Adaptive Sampling and the Autonomous Ocean Sampling Network: Bringing Data Together With Skill

Size: px
Start display at page:

Download "Adaptive Sampling and the Autonomous Ocean Sampling Network: Bringing Data Together With Skill"

Transcription

1 Adaptive Sampling and the Autonomous Ocean Sampling Network: Bringing Data Together With Skill Lev Shulman, University of New Orleans Mentors: Paul Chandler, Jim Bellingham, Hans Thomas Summer 2003 Keywords: AOSN, Skill Metrics and Assessment, Graphic User Interface, Data Visualization ABSTRACT The AOSN(Autonomous Ocean Sampling Network) brings together sophisticated modern robotic vehicles with advanced ocean prediction models to improve our ability to predict the ocean. The operational system includes data collection by smart and adaptive platforms and sensors that relay information to a shore in near real-time (hours) where it is assimilated into numerical models that help visualize the four dimensional fields and predict future conditions. An essential part of the AOSN experiment is measuring skill. During the experiment, the models predict the future behavior of the ocean, and based on its output, the observation data assets are deployed to the area of interest in a coordinated manner. Because AOSN utilizes two major model prediction systems (HOPS, ROMS), and many different data collection vehicles (Scripps glider, WHOI gliders, Seawiffs, Dorado AUV, etc.), three different data comparisons need to be presented to measure skill: model vs. model, model vs. observation, and observation vs. observation. The primary goal of my project was to develop a Graphic User Interface(GUI) for assessing and visualizing skill pertaining to these kinds of comparisons. INTRODUCTION Prior to the field experiment, namely the collection of observational data, a number of issues needed to be resolved. Because data is collected from a variety of instruments and vehicles, and therefore has many different formats and flavors, a common data format and data conversion was needed. The idea was to have the observation data shipped to the modelers to have it interpolated. Once the data is interpolated and represented in the same domain and format, coherent comparisons can be made. The field experiment would bring forth copious amounts of observation data in a large variety of formats. These formats would need to be understood and properly documented and archived in a uniform manner. The completion of the tasks listed above was necessary to provide the underlying architecture and implementation of the skill assessment Grahpic User Interface. 1

2 MATERIALS AND METHODS LAYOUT OF THE SKILL ASSESSMENT GUI The layout of the GUI needed to be simple, but versatile. After some consideration and revision, a layout was decided. It consisted of the following: Three major axes: one for the two datasets plotted (model vs. model, model vs. observation, observation vs. observation), and the third for the comparison between the two datasets. Two smaller axes on the bottom to display the Vertical RMS Error and the Vertical TCC Error Dropdown windows to allow the user to switch between parameters(temperature, salinity, pressure, etc.) of a profile or dive A user click button that would display the actual data in a matrix or some other appropriate form. Menu items to allow the user to save plots in various graphics formats(.jpg, giff, etc.). A user option to choose window of data to visualize and compare. Ex: allow the user to view WHOI Glider and HOPS temperatures at a depth between 5 and 30 m. All of the AOSN visualization products were chosen to be programmed and produced using Matlab software, which is optimal for producing surface and three dimensional interpolated plots, and has an extensive, user-friendly GUI library (GUIDE). Below is an example of the Skill Assessment GUI Layout: 2

3 DATA MINING Although the layout was resolved, the architecture to feed data into the GUI was not in place. Again, data came in a large variety of formats: ASCII, binary, Matlab.mat files, NetCDF files, HDF file, etc. The data was dumped into directories on the server \\Polarbear, named after the asset collecting the data. For example, the WHOI Gliders would send back data as ASCII (text) files with the extension.prf ; these files would be stored in the \\Polarbear\aosnII\ \WHOIGlider\ directory. We took on the long and strenuous task of documenting and understanding what the data represented. Afterwards software routines were implemented to read this raw data into Matlab space. At this point, the issue of data pedigree became imperative. How should the data be archived? The WHOI glider raw data files, for example, would capture a single profile, and after a couple of weeks into the field experiment, the WHOIGlider directory on \\Polarbear would fill up with over 1000 files. The SIOGlider data, which essentially represented the same type of data, was archived in single files per glider, and each file had all of the profiles data collected appended to itself, creating only about 7 files in its SIOGlider directory on \\Polarbear. Some sort of consistency in storing and organizing, as well as proper version control and history was needed. Data management design is a challenging problem, and a good design for the flow and pedigree of data became a priority. Time was critical for many of AOSN collaborators and many users tended to read raw data from the \\Polarbear server for their own purposes, using their own software. It became clear that the conversion and archival of data to a common, AOSN specific interface was needed. When designing a system, there are several reasons for the abstraction of data into a common format. The A in AOSN stands for autonomous, and once all of the software is completed, the AOSN network should function in an autonomous fashion. Therefore it was important to keep in mind not only the short term objectives of needed software, but the long term objectives as well. By utilizing a single common data format, the flow and design of data is greatly simplified, and the implementation and design of autonomy throughout the system and its interaction with the data becomes a lot more intelligible. Robustness and modularity, coupled with the separation of data and process, can greatly reduce the potential error of a system, as well as substantially increase system efficiency. Consider the following data flow diagram: Figure 1 3

4 The task of the flow in Figure 1 is to get a window of data from an asset s directory on \\Polarbear\ to the Skill Metrics and Assessment GUI, or any other application. The ovals represent processes of reading in and extracting a window of data from the raw data format. Because each asset s raw data is differently formatted and organized, the processes are all different, requiring the implementation of a different subroutine for each asset. If there is a change or modification in one of the asset s data formats, then there has to be an accommodating change in the processes and application as well. Therefore, there is no modularity. Data abstraction is not present in this type of design, although most of the data does have the common time, depth, latitude, and longitude column data format.. Although, in actuality, Figure 1 represents the exact type of data to application exchange that was in place, this data flow design is inefficient, and can be improved. Consider the following diagram: Figure 2 In this particular design, the raw data from the assets has previously been converted to a common format. There is no need to read in the raw data pertaining to each asset, because it is all in the same format. The only process that needs to be implemented to get from the data to the application is the process of extracting a window of data. The process is the same for each asset s data. Whit this design, modularity and the robustness of code is optimal, because each particular element of the flow diagram stands alone and does not depend on another s specifics. There is also a lot less code to be written and maintained, reducing the potential error of the system. This is the design that we decided to integrate to. NETCDF The data would was converted to NetCDF, an accepted standard in the scientific community. NetCDF (network Common Data Form) is an interface for array-oriented data access and a library that provides an implementation of the interface. The netcdf library also defines a machine-independent format for representing scientific data. Together, the interface, library, and format support the creation, access, and sharing of scientific data, and is optimal for storing data in time, depth, latitude, and longitude format (UNIDATA, web). Matlab provides a comprehensive set of tools for dealing with 4

5 NetCDF. I also compiled some Matlab/NetCDF routines for AOSN specific purposes. We set out on the task to convert each observation asset s data to a new common AOSN NetCDF format, consisting of time, depth, latitude, longitude, and data columns stored in.nc binary files. DATA EXTRACTION TOOL An efficient tool was needed to extract a window of data based on a parameter of data from an asset s data. For example, to feed a visualization tool, all WHOI Glider data spanning from June 27 to August 2 nd, at 30 m depths, may have been needed. I set out to write this kind of tool using Matlab s object oriented capabilities. Utilizing object oriented programming techniques can improve modularity and reusability of code, as well as provide a good level of abstraction. The tool was completed and allowed the user to extract a window of data from any parameter within the data, be it time, depth, temperature, salinity, etc. The tool is completely object oriented, providing only one subroutine to extract data from any asset s NetCDF data, avoiding having a number of subroutines specific to each asset. The tool was documented and used to feed visualization products like the plots below: 5

6 AUTOMATED CONVERSION To utilize the type of data flow design introduced in Figure 2, conversion to the AOSN NetCDF format has to be automated, and data has to be updated frequently. I created a set of tools to convert a number of assets automatically, allowing the user to specify the time interval of each conversion. The conversion can be done in two ways: as a Matlab process a Matlab data conversion program repeats itself at a time interval specified by the user, or as a server process repeating itself essentially a cron job that is in a loop. The second option may be more inefficient because Matlab has to be started up each time a new server process runs. RESULTS (Normal, Times New Roman, 12 pt, bold) The following sets of tools were completed: Automated AOSN NetCDF data conversion tools o The Matlab NetCDF toolbox was modified to better suit AOSN purposes Skill Metrics and Assessment GUI Layout Comprehensive Set of Data Window Extraction tools for a number of the assets WHOI Glider and Scripps Glider visualization products Below is a diagram representing the flow of data for potential visualization products. The top is data stored on \\Polarbear\ server, and the bottom the visualization product. 6

7 DOCUMENTATION The following is a list of the various function and subroutines that were implemented and documented: \\polarbear\aosnii\software\observation_data_software\dorado1 o \\polarbear\aosnii\software\observation_data_software\dorado1\dorado12 netcdf.m o \\polarbear\aosnii\software\observation_data_software\dorado1\dorado_d ata.m o \\polarbear\aosnii\software\observation_data_software\dorado1\@dorado 1\*.m \\polarbear\aosnii\software\observation_data_software\ptsurunderway o \\polarbear\aosnii\software\observation_data_software\ptsurunderway\pt SurUnderway_data.m o \\polarbear\aosnii\software\observation_data_software\ptsurunderway\@ ptsurunderway\*.m \\polarbear\aosnii\software\observation_data_software\sioglider o \\polarbear\aosnii\software\observation_data_software\sioglider\all_sio2 nc.m o \\polarbear\aosnii\software\observation_data_software\sioglider\get_sio glider_data.m o \\polarbear\aosnii\software\observation_data_software\sioglider\qc_sio_ glider.m o \\polarbear\aosnii\software\observation_data_software\sioglider\sioglide r2netcdf.m o \\polarbear\aosnii\software\observation_data_software\sioglider\sioglide r_data.m o \\polarbear\aosnii\software\observation_data_software\sioglider\@siogli der\*.m o \\polarbear\aosnii\software\observation_data_software\sioglider\sioglide r2netcdf.sh \\polarbear\aosnii\software\observation_data_software\whoiglider o \\polarbear\aosnii\software\observation_data_software\whoiglider\all_w hoi_prfs2nc.m o \\polarbear\aosnii\software\observation_data_software\whoiglider\get_m odifiedwhoi_time.m o \\polarbear\aosnii\software\observation_data_software\whoiglider\get_w hoiglider_data.m o \\polarbear\aosnii\software\observation_data_software\whoiglider\qc_w hoi_glider.m o \\polarbear\aosnii\software\observation_data_software\whoiglider\whoi_ date_str2frac_day.m o \\polarbear\aosnii\software\observation_data_software\whoiglider\whoig lider2netcdf.m 7

8 o \\polarbear\aosnii\software\observation_data_software\whoiglider\whoig lider2netcdf.sh o \\polarbear\aosnii\software\observation_data_software\whoiglider\whoig lider_data.m \\polarbear\aosnii\software\observation_data_software\get_aosn_asset_data. m \\polarbear\aosnii\software\observation_data_software\visualization\time_vs_ depth.m \\polarbear\aosnii\software\aosn_utilities\ o \\polarbear\aosnii\software\aosn_utilities\aosn_mat2str.m o \\polarbear\aosnii\software\aosn_utilities\aosn_nc2cdl.m o \\polarbear\aosnii\software\aosn_utilities\automate_asset_conversion.m o \\polarbear\aosnii\software\aosn_utilities\depth_.m o \\polarbear\aosnii\software\aosn_utilities\get_interp_3d.m o \\polarbear\aosnii\software\aosn_utilities\nc2mat_struct.m o \\polarbear\aosnii\software\aosn_utilities\nc2mfile.m o \\polarbear\aosnii\software\aosn_utilities\pad_num_str.m \\polarbear\aosnii\software\aosn_utilities\setup\setup_mammoth_path.m \\polarbear\aosnii\software\aosn_utilities\setup\lev\setup_win_path.m \\polarbear\aosnii\software\aosn_utilities\time_conversion_functions o \\polarbear\aosnii\software\aosn_utilities\time_conversion_functions\frac_ day2str.m o \\polarbear\aosnii\software\aosn_utilities\time_conversion_functions\fracti onal_day2month_day_time.m o \\polarbear\aosnii\software\aosn_utilities\time_conversion_functions\get_f ractional_day.m o \\polarbear\aosnii\software\aosn_utilities\time_conversion_functions\unix secs2frac_day.m DISCUSSION (Heading 3, Times New Roman, 12 pt, bold) Competing with time was perhaps the most challenging task of the project. A sophisticated and efficient design of a system as complex and demanding as the AOSN data flow network is a rather daunting task. A good initial design is much more favorable that a poor but promptly completed design in the long run. CONCLUSIONS/RECOMMENDATIONS (Heading 3, Times New Roman, 12 pt, bold) Although Matlab s object oriented capabilities are rather new, I highly recommend utilizing the object oriented approach. It creates very manageable and modular code, that is easier to maintain in the long run. During the experiment, CVS (Concurrent Versions System) software was considered. AOSN data goes through many phases and stages, and is fed into many 8

9 different applications. A proper way to archive, store, organize, and track, the changes in the data is important. CVS may be the tool needed. ACKNOWLEDGEMENTS Paul Chandler, Hans Thomas, Jim Bellingham, the entire AOSN team, and a great thanks to George Matsumoto. References: UNIDATA. 9

IDL. Get the answers you need from your data. IDL

IDL. Get the answers you need from your data. IDL Get the answers you need from your data. IDL is the preferred computing environment for understanding complex data through interactive visualization and analysis. IDL Powerful visualization. Interactive

More information

Structural Health Monitoring Tools (SHMTools)

Structural Health Monitoring Tools (SHMTools) Structural Health Monitoring Tools (SHMTools) Getting Started LANL/UCSD Engineering Institute LA-CC-14-046 c Copyright 2014, Los Alamos National Security, LLC All rights reserved. May 30, 2014 Contents

More information

Scientific Data Management and Dissemination

Scientific Data Management and Dissemination Federal GIS Conference February 9 10, 2015 Washington, DC Scientific Data Management and Dissemination John Fry Solution Engineer, Esri jfry@esri.com Agenda Background of Scientific Data Management through

More information

OCEANOGRAPHIC DECISION SUPPORT SYSTEM (ODSS) A TOOL TO IMPROVE EFFICIENCY OF BIOLOGICAL OCEAN STUDY

OCEANOGRAPHIC DECISION SUPPORT SYSTEM (ODSS) A TOOL TO IMPROVE EFFICIENCY OF BIOLOGICAL OCEAN STUDY OCEANOGRAPHIC DECISION SUPPORT SYSTEM (ODSS) A TOOL TO IMPROVE EFFICIENCY OF BIOLOGICAL OCEAN STUDY Maughan, T. G., MBARI, Moss Landing, USA, tm@mbari.org Rajan, K.., MBARI, Moss Landing, USA, kanna@mbari.org

More information

The Turning of JMP Software into a Semiconductor Analysis Software Product:

The Turning of JMP Software into a Semiconductor Analysis Software Product: The Turning of JMP Software into a Semiconductor Analysis Software Product: The Implementation and Rollout of JMP Software within Freescale Semiconductor Inc. Jim Nelson, Manager IT, Yield Management Systems

More information

A Program for PCB Estimation with Altium Designer

A Program for PCB Estimation with Altium Designer A Program for PCB Estimation with Altium Designer By: Steve Hageman AnalogHome.com One thing that I have had to do over and over on my new PCB jobs is to make an estimate of how long I think the layout

More information

The evolution of DAVE

The evolution of DAVE The evolution of DAVE The evolution of a large IDL application Data Analysis and Visualization Environment (DAVE) project. Richard Tumanjong Azuah Larry Kneller Yiming Qui John Copley Robert M Dimeo Craig

More information

PART 1. Representations of atmospheric phenomena

PART 1. Representations of atmospheric phenomena PART 1 Representations of atmospheric phenomena Atmospheric data meet all of the criteria for big data : they are large (high volume), generated or captured frequently (high velocity), and represent a

More information

FreeForm Designer. Phone: +972-9-8309999 Fax: +972-9-8309998 POB 8792, Natanya, 42505 Israel www.autofont.com. Document2

FreeForm Designer. Phone: +972-9-8309999 Fax: +972-9-8309998 POB 8792, Natanya, 42505 Israel www.autofont.com. Document2 FreeForm Designer FreeForm Designer enables designing smart forms based on industry-standard MS Word editing features. FreeForm Designer does not require any knowledge of or training in programming languages

More information

900612 ESP -- SURF Center : ESP GUI Users Guide

900612 ESP -- SURF Center : ESP GUI Users Guide 900612 ESP -- SURF Center : ESP GUI Users Guide This page last changed on Oct 31, 2011 by kgomes. This is a quick sequence of steps to get the user up and running with the ESP GUI application. When you

More information

Data Management Handbook

Data Management Handbook Data Management Handbook Last updated: December, 2002 Argo Data Management Handbook 2 TABLE OF CONTENTS 1. INTRODUCTION...4 2. GLOBAL DATA FLOW...5 3. RESPONSIBILITIES...6 3.1. NATIONAL CENTRES:...6 3.2.

More information

EnterpriseLink Benefits

EnterpriseLink Benefits EnterpriseLink Benefits GGY AXIS 5001 Yonge Street Suite 1300 Toronto, ON M2N 6P6 Phone: 416-250-6777 Toll free: 1-877-GGY-AXIS Fax: 416-250-6776 Email: axis@ggy.com Web: www.ggy.com Table of Contents

More information

SIMATIC. WinCC V7.0. Getting started. Getting started. Welcome 2. Icons 3. Creating a project 4. Configure communication 5

SIMATIC. WinCC V7.0. Getting started. Getting started. Welcome 2. Icons 3. Creating a project 4. Configure communication 5 SIMATIC WinCC V7.0 SIMATIC WinCC V7.0 Printout of the Online Help 1 Welcome 2 Icons 3 Creating a project 4 Configure communication 5 Configuring the Process Screens 6 Archiving and displaying values 7

More information

AOSN II System Goals and Performance Metrics R. Davis, J. Bellingham, P. Chandler, F. Chavez, N. Leoanard, A. Robinson (revised 11 May 2003)

AOSN II System Goals and Performance Metrics R. Davis, J. Bellingham, P. Chandler, F. Chavez, N. Leoanard, A. Robinson (revised 11 May 2003) AOSN II System Goals and Performance Metrics R. Davis, J. Bellingham, P. Chandler, F. Chavez, N. Leoanard, A. Robinson (revised 11 May 2003) The 2003 AOSN II field program depends on coordinated activities

More information

Satellite Products and Dissemination: Visualization and Data Access

Satellite Products and Dissemination: Visualization and Data Access Satellite Products and Dissemination: Visualization and Data Access Gregory Leptoukh GES DISC, NASA GSFC Dana Ostrenga GES DISC, NASA GSFC Introduction The Goddard Earth Sciences Data and Information Services

More information

Computer Automation Techniques. Arthur Carroll

Computer Automation Techniques. Arthur Carroll Computer Automation Techniques Arthur Carroll 1 Three Types of Computers Micro-Controller Single Board Computer Desktop Computer 2 The Micro-Controller Small inexpensive DIP or surface mount chips Roughly

More information

CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler

CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler 1) Operating systems a) Windows b) Unix and Linux c) Macintosh 2) Data manipulation tools a) Text Editors b) Spreadsheets

More information

Agile Project Execution

Agile Project Execution ebook Agile Project Execution The future of Industrial Process Automation projects v1.4 EMK(VDS)-TR-EB-01 APEX ebook Table of Contents Intro Agile Project Execution Page 2. Chapter 1 Conventional Project

More information

Visualization. For Novices. ( Ted Hall ) University of Michigan 3D Lab Digital Media Commons, Library http://um3d.dc.umich.edu

Visualization. For Novices. ( Ted Hall ) University of Michigan 3D Lab Digital Media Commons, Library http://um3d.dc.umich.edu Visualization For Novices ( Ted Hall ) University of Michigan 3D Lab Digital Media Commons, Library http://um3d.dc.umich.edu Data Visualization Data visualization deals with communicating information about

More information

Seeing the Big Picture

Seeing the Big Picture Seeing the Big Picture Sensing, Linking, Analyzing and Visualizing Big Data Dr. Paul Janecek Introduction Seeing Details and Context in Big Data Example: Real-Time Monitoring Sensing: In-Situ Data Linking:

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

DATA MINING TOOL FOR INTEGRATED COMPLAINT MANAGEMENT SYSTEM WEKA 3.6.7

DATA MINING TOOL FOR INTEGRATED COMPLAINT MANAGEMENT SYSTEM WEKA 3.6.7 DATA MINING TOOL FOR INTEGRATED COMPLAINT MANAGEMENT SYSTEM WEKA 3.6.7 UNDER THE GUIDANCE Dr. N.P. DHAVALE, DGM, INFINET Department SUBMITTED TO INSTITUTE FOR DEVELOPMENT AND RESEARCH IN BANKING TECHNOLOGY

More information

XSEDE Data Analytics Use Cases

XSEDE Data Analytics Use Cases XSEDE Data Analytics Use Cases 14th Jun 2013 Version 0.3 XSEDE Data Analytics Use Cases Page 1 Table of Contents A. Document History B. Document Scope C. Data Analytics Use Cases XSEDE Data Analytics Use

More information

ICES Guidelines for Profiling Float Data (Compiled January 2001; revised April 2006)

ICES Guidelines for Profiling Float Data (Compiled January 2001; revised April 2006) ICES Guidelines for Profiling Float Data (Compiled January 2001; revised April 2006) Profiling floats are neutrally buoyant devices that periodically surface to transmit data to a satellite system. The

More information

Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software

Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software Donna Torrence, SAS Institute Inc., Cary, North Carolina Juli Staub Perry, SAS Institute Inc., Cary, North Carolina

More information

Dream Report vs MS SQL Reporting. 10 Key Advantages for Dream Report

Dream Report vs MS SQL Reporting. 10 Key Advantages for Dream Report Dream Report vs MS SQL Reporting 10 Key Advantages for Dream Report Page 2 of 15 Table of Contents INTRODUCTION 3 PROFESSIONAL SOFTWARE FOR NON-PROGRAMMING USERS 4 CONSIDERABLE DIFFERENCE IN ENGINEERING

More information

Data Analysis with MATLAB. 2013 The MathWorks, Inc. 1

Data Analysis with MATLAB. 2013 The MathWorks, Inc. 1 Data Analysis with MATLAB 2013 The MathWorks, Inc. 1 Agenda Introduction Data analysis with MATLAB and Excel Break Developing applications with MATLAB Solving larger problems Summary 2 Modeling the Solar

More information

Chapter 6. Using the SQL Server

Chapter 6. Using the SQL Server Chapter 6 Using the SQL Server BC30 Using the SQL Server 1 5/2010 Content 1 Installing and setting up the SQL Server... 3 2 Exporting an SQL database... 7 3 Importing an SQL database... 9 4 Opening the

More information

QAD Business Intelligence Data Warehouse Demonstration Guide. May 2015 BI 3.11

QAD Business Intelligence Data Warehouse Demonstration Guide. May 2015 BI 3.11 QAD Business Intelligence Data Warehouse Demonstration Guide May 2015 BI 3.11 Overview This demonstration focuses on the foundation of QAD Business Intelligence the Data Warehouse and shows how this functionality

More information

Introduction to MATLAB for Data Analysis and Visualization

Introduction to MATLAB for Data Analysis and Visualization Introduction to MATLAB for Data Analysis and Visualization Sean de Wolski Application Engineer 2014 The MathWorks, Inc. 1 Data Analysis Tasks Files Data Analysis & Modeling Reporting and Documentation

More information

RESCO MOBILE CRM USER GUIDE. Access your CRM data on any mobile platform ipad, iphone, Android, Windows Phone or Win XP/Vista/7/8

RESCO MOBILE CRM USER GUIDE. Access your CRM data on any mobile platform ipad, iphone, Android, Windows Phone or Win XP/Vista/7/8 RESCO MOBILE CRM USER GUIDE Access your CRM data on any mobile platform ipad, iphone, Android, Windows Phone or Win XP/Vista/7/8 Contents Synchronization... 1 1.1. How to synchronize your device... 1 1.2.

More information

Power Tools for Pivotal Tracker

Power Tools for Pivotal Tracker Power Tools for Pivotal Tracker Pivotal Labs Dezmon Fernandez Victoria Kay Eric Dattore June 16th, 2015 Power Tools for Pivotal Tracker 1 Client Description Pivotal Labs is an agile software development

More information

Best Practices: Extending Enterprise Applications to Mobile Devices

Best Practices: Extending Enterprise Applications to Mobile Devices Best Practices: Extending Enterprise Applications to Mobile Devices by Kulathumani Hariharan Summary: Extending enterprise applications to mobile devices is increasingly becoming a priority for organizations

More information

CRGroup Whitepaper: Digging through the Data. www.crgroup.com. Reporting Options in Microsoft Dynamics GP

CRGroup Whitepaper: Digging through the Data. www.crgroup.com. Reporting Options in Microsoft Dynamics GP CRGroup Whitepaper: Digging through the Data Reporting Options in Microsoft Dynamics GP The objective of this paper is to provide greater insight on each of the reporting options available to you within

More information

Robot Task-Level Programming Language and Simulation

Robot Task-Level Programming Language and Simulation Robot Task-Level Programming Language and Simulation M. Samaka Abstract This paper presents the development of a software application for Off-line robot task programming and simulation. Such application

More information

SQL Server 2014 BI. Lab 04. Enhancing an E-Commerce Web Application with Analysis Services Data Mining in SQL Server 2014. Jump to the Lab Overview

SQL Server 2014 BI. Lab 04. Enhancing an E-Commerce Web Application with Analysis Services Data Mining in SQL Server 2014. Jump to the Lab Overview SQL Server 2014 BI Lab 04 Enhancing an E-Commerce Web Application with Analysis Services Data Mining in SQL Server 2014 Jump to the Lab Overview Terms of Use 2014 Microsoft Corporation. All rights reserved.

More information

Archival of raw and analysed radar data at EISCAT and worldwide

Archival of raw and analysed radar data at EISCAT and worldwide Archival of raw and analysed radar data at EISCAT and worldwide Carl-Fredrik Enell, EISCAT Scientific Association COOPEUS workshop and EGI-CC kickoff, 11 March 2015 C-F Enell, EISCAT Radar data archival

More information

Barcode Based Automated Parking Management System

Barcode Based Automated Parking Management System IJSRD - International Journal for Scientific Research & Development Vol. 2, Issue 03, 2014 ISSN (online): 2321-0613 Barcode Based Automated Parking Management System Parth Rajeshbhai Zalawadia 1 Jasmin

More information

S m a r t M a s t e B T E C O R P O R A T I O N USER MANUAL

S m a r t M a s t e B T E C O R P O R A T I O N USER MANUAL S m a r t M a s t e rtm 2014 B T E C O R P O R A T I O N USER MANUAL S m a r t M a s t e r T M 2 0 1 4 U s e r M a n u a l P a g e 1 o f 2 3 Contents Contents...1 Introduction...2 Audience...2 SmartMaster

More information

Sterling Business Intelligence

Sterling Business Intelligence Sterling Business Intelligence Concepts Guide Release 9.0 March 2010 Copyright 2009 Sterling Commerce, Inc. All rights reserved. Additional copyright information is located on the documentation library:

More information

Zhenping Liu *, Yao Liang * Virginia Polytechnic Institute and State University. Xu Liang ** University of California, Berkeley

Zhenping Liu *, Yao Liang * Virginia Polytechnic Institute and State University. Xu Liang ** University of California, Berkeley P1.1 AN INTEGRATED DATA MANAGEMENT, RETRIEVAL AND VISUALIZATION SYSTEM FOR EARTH SCIENCE DATASETS Zhenping Liu *, Yao Liang * Virginia Polytechnic Institute and State University Xu Liang ** University

More information

imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing

imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing imc FAMOS ensures fast results Comprehensive data processing

More information

Introduction to MATLAB Gergely Somlay Application Engineer gergely.somlay@gamax.hu

Introduction to MATLAB Gergely Somlay Application Engineer gergely.somlay@gamax.hu Introduction to MATLAB Gergely Somlay Application Engineer gergely.somlay@gamax.hu 2012 The MathWorks, Inc. 1 What is MATLAB? High-level language Interactive development environment Used for: Numerical

More information

System Software. 2.1 The Operating System (OS) %%describe the characteristics of different types

System Software. 2.1 The Operating System (OS) %%describe the characteristics of different types System Software 2 Revision Objectives After you have studied this chapter, you should be able to: %%describe the purpose of operating systems %%describe the characteristics of different types of operating

More information

UCINET Quick Start Guide

UCINET Quick Start Guide UCINET Quick Start Guide This guide provides a quick introduction to UCINET. It assumes that the software has been installed with the data in the folder C:\Program Files\Analytic Technologies\Ucinet 6\DataFiles

More information

Use of Gridded Forecast Data

Use of Gridded Forecast Data Use of Gridded Forecast Data How to download gridded forecast data and indices from the TCC website Hitoshi Sato Numerical Prediction Unit Climate Prediction Division / JMA Outline Indices forecast data

More information

DATA CENTER INFRASTRUCTURE MANAGEMENT

DATA CENTER INFRASTRUCTURE MANAGEMENT THE nlyte SOLUTION nlyte Software was founded by data center professionals for data center professionals and is the independent provider of data center infrastructure Management (DCIM) solutions. The nlyte

More information

Vector HelpDesk v6.0. What's New Bulletin. Feature rich internal and external customer support

Vector HelpDesk v6.0. What's New Bulletin. Feature rich internal and external customer support What's New Bulletin Vector HelpDesk v6.0 Feature rich internal and external customer support Version 6.0 represents more than two years of development and one of our most feature-rich releases ever. The

More information

FIVE STEPS FOR DELIVERING SELF-SERVICE BUSINESS INTELLIGENCE TO EVERYONE CONTENTS

FIVE STEPS FOR DELIVERING SELF-SERVICE BUSINESS INTELLIGENCE TO EVERYONE CONTENTS FIVE STEPS FOR DELIVERING SELF-SERVICE BUSINESS INTELLIGENCE TO EVERYONE Wayne Eckerson CONTENTS Know Your Business Users Create a Taxonomy of Information Requirements Map Users to Requirements Map User

More information

Special Edition for FastTrack Software

Special Edition for FastTrack Software 08/14 The magazine for professional system and networkadministration Special Edition for FastTrack Software Tested: FastTrack Automation Studio www.it-administrator.com TESTS I FastTrack Automation Studio

More information

Microsoft Office System Tip Sheet

Microsoft Office System Tip Sheet Experience the 2007 Microsoft Office System The 2007 Microsoft Office system includes programs, servers, services, and solutions designed to work together to help you succeed. New features in the 2007

More information

A beginners guide to accessing Argo data. John Gould Argo Director

A beginners guide to accessing Argo data. John Gould Argo Director A beginners guide to accessing Argo data John Gould Argo Director Argo collects salinity/temperature profiles from a sparse (average 3 x 3 spacing) array of robotic floats that populate the ice-free oceans

More information

Business Process Management In An Application Development Environment

Business Process Management In An Application Development Environment Business Process Management In An Application Development Environment Overview Today, many core business processes are embedded within applications, such that it s no longer possible to make changes to

More information

Excel Companion. (Profit Embedded PHD) User's Guide

Excel Companion. (Profit Embedded PHD) User's Guide Excel Companion (Profit Embedded PHD) User's Guide Excel Companion (Profit Embedded PHD) User's Guide Copyright, Notices, and Trademarks Copyright, Notices, and Trademarks Honeywell Inc. 1998 2001. All

More information

imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing

imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing www.imcfamos.com imc FAMOS at a glance Four editions to Optimize

More information

SRS BIO OPTICAL WORKFLOW

SRS BIO OPTICAL WORKFLOW SRS BIO OPTICAL WORKFLOW Version 2.0 22 nd March 2013 Data Workflows emii, the data management facility for IMOS, has developed workflows for each IMOS sub facility to describe the flow of IMOS data from

More information

TIBCO Spotfire Automation Services 6.5. User s Manual

TIBCO Spotfire Automation Services 6.5. User s Manual TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Norwegian Satellite Earth Observation Database for Marine and Polar Research http://normap.nersc.no USE CASES

Norwegian Satellite Earth Observation Database for Marine and Polar Research http://normap.nersc.no USE CASES Norwegian Satellite Earth Observation Database for Marine and Polar Research http://normap.nersc.no USE CASES The NORMAP Project team has prepared this document to present functionality of the NORMAP portal.

More information

HYCOM Meeting. Tallahassee, FL

HYCOM Meeting. Tallahassee, FL HYCOM Data Service An overview of the current status and new developments in Data management, software and hardware Ashwanth Srinivasan & Jon Callahan COAPS FSU & PMEL HYCOM Meeting Nov 7-9, 7 2006 Tallahassee,

More information

Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science. Unit of Study / Textbook Correlation

Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science. Unit of Study / Textbook Correlation Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science updated 03/08/2012 Unit 1: JKarel 8 weeks http://www.fcps.edu/is/pos/documents/hs/compsci.htm

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

A fresh approach to accelerating the Financial Close

A fresh approach to accelerating the Financial Close A fresh approach to accelerating the Financial Close What does the Cloud CFO solution provide? For group finance facing the chore of a slow manual consolidation process using spreadsheets, Cloud CFO offers

More information

Asia and Pacific Commission on Agricultural Statistics

Asia and Pacific Commission on Agricultural Statistics October 2012 APCAS/12/22 Asia and Pacific Commission on Agricultural Statistics Twenty-fourth Session Da Lat, Viet Nam, 8-12 October 2012 Agenda Item 9 Use of Smart-phones for food and agricultural price

More information

Metatrader 4 Tutorial

Metatrader 4 Tutorial Metatrader 4 Tutorial Thank you for your interest in Best Metatrader Broker! This tutorial goes in detail about how to install and trade with your new Metatrader Forex trading platform. With Best Metatrader

More information

Data Migration Service An Overview

Data Migration Service An Overview Metalogic Systems Pvt Ltd J 1/1, Block EP & GP, Sector V, Salt Lake Electronic Complex, Calcutta 700091 Phones: +91 33 2357-8991 to 8994 Fax: +91 33 2357-8989 Metalogic Systems: Data Migration Services

More information

Web-based Reporting and Tools used in the QA process for the SAS System Software

Web-based Reporting and Tools used in the QA process for the SAS System Software Web-based Reporting and Tools used in the QA process for the SAS System Software Jim McNealy, SAS Institute Inc., Cary, NC Dawn Amos, SAS Institute Inc., Cary, NC Abstract SAS Institute Quality Assurance

More information

Latin American and Caribbean Flood and Drought Monitor Tutorial Last Updated: November 2014

Latin American and Caribbean Flood and Drought Monitor Tutorial Last Updated: November 2014 Latin American and Caribbean Flood and Drought Monitor Tutorial Last Updated: November 2014 Introduction: This tutorial examines the main features of the Latin American and Caribbean Flood and Drought

More information

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved.

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. Evaluator s Guide PC-Duo Enterprise HelpDesk v5.0 Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. All third-party trademarks are the property of their respective owners.

More information

PRODUCT DATA. PULSE WorkFlow Manager Type 7756

PRODUCT DATA. PULSE WorkFlow Manager Type 7756 PRODUCT DATA PULSE WorkFlow Manager Type 7756 PULSE WorkFlow Manager Type 7756 provides a range of tools for automating measurement and analysis tasks performed with Brüel & Kjær PULSE. This makes it particularly

More information

NETFORT LANGUARDIAN MONITORING WAN CONNECTIONS. How to monitor WAN connections with NetFort LANGuardian Aisling Brennan

NETFORT LANGUARDIAN MONITORING WAN CONNECTIONS. How to monitor WAN connections with NetFort LANGuardian Aisling Brennan NETFORT LANGUARDIAN MONITORING WAN CONNECTIONS How to monitor WAN connections with NetFort LANGuardian Aisling Brennan LANGuardian gives you the information you need to troubleshoot problems and monitor

More information

Solution Park Support for Computer and Networks

Solution Park Support for Computer and Networks Solution Park Support for Computer and Networks CS Odessa corp. Contents ConceptDraw and ConceptDraw Solution Park...3 Computer and Networks Area...3 CS Odessa Role...3 Solutions Overviews...4 Computer

More information

An Introduction to SAS Enterprise Miner and SAS Forecast Server. André de Waal, Ph.D. Analytical Consultant

An Introduction to SAS Enterprise Miner and SAS Forecast Server. André de Waal, Ph.D. Analytical Consultant SAS Analytics Day An Introduction to SAS Enterprise Miner and SAS Forecast Server André de Waal, Ph.D. Analytical Consultant Agenda 1. Introduction to SAS Enterprise Miner 2. Basics 3. Enterprise Miner

More information

Dynamic AUV Mission and Data Visualization with Google Earth

Dynamic AUV Mission and Data Visualization with Google Earth Dynamic AUV Mission and Data Visualization with Google Earth Alhayat Ali Mekonnen, VIBOT student Heriot Watt University, Universite de Girona, and Universite de Bourgogne Mentors: Kanna Rajan Summer 2009

More information

Responsive Web Design. vs. Mobile Web App: What s Best for Your Enterprise? A WhitePaper by RapidValue Solutions

Responsive Web Design. vs. Mobile Web App: What s Best for Your Enterprise? A WhitePaper by RapidValue Solutions Responsive Web Design vs. Mobile Web App: What s Best for Your Enterprise? A WhitePaper by RapidValue Solutions The New Design Trend: Build a Website; Enable Self-optimization Across All Mobile De vices

More information

Rotorcraft Health Management System (RHMS)

Rotorcraft Health Management System (RHMS) AIAC-11 Eleventh Australian International Aerospace Congress Rotorcraft Health Management System (RHMS) Robab Safa-Bakhsh 1, Dmitry Cherkassky 2 1 The Boeing Company, Phantom Works Philadelphia Center

More information

Software: Systems and Application Software

Software: Systems and Application Software Software: Systems and Application Software Computer Software Operating System Popular Operating Systems Language Translators Utility Programs Applications Programs Types of Application Software Personal

More information

ImageMaster. ECM Solutions.

ImageMaster. ECM Solutions. Contact: T-Systems Enterprise Services GmbH Fasanenweg 5 70771 Leinfelden-Echterdingen Germany Phone: +49 711 972 47779 e-mail: imagemaster@t-systems.com www.t-systems.de/imagemaster ImageMaster. ECM Solutions.

More information

BUSINESS INTELLIGENCE. Keywords: business intelligence, architecture, concepts, dashboards, ETL, data mining

BUSINESS INTELLIGENCE. Keywords: business intelligence, architecture, concepts, dashboards, ETL, data mining BUSINESS INTELLIGENCE Bogdan Mohor Dumitrita 1 Abstract A Business Intelligence (BI)-driven approach can be very effective in implementing business transformation programs within an enterprise framework.

More information

Usage Analysis Tools in SharePoint Products and Technologies

Usage Analysis Tools in SharePoint Products and Technologies Usage Analysis Tools in SharePoint Products and Technologies Date published: June 9, 2004 Summary: Usage analysis allows you to track how websites on your server are being used. The Internet Information

More information

Application-Centric Analysis Helps Maximize the Value of Wireshark

Application-Centric Analysis Helps Maximize the Value of Wireshark Application-Centric Analysis Helps Maximize the Value of Wireshark The cost of freeware Protocol analysis has long been viewed as the last line of defense when it comes to resolving nagging network and

More information

Benefits of Upgrading to Phoenix WinNonlin 6.2

Benefits of Upgrading to Phoenix WinNonlin 6.2 Benefits of Upgrading to Phoenix WinNonlin 6.2 Pharsight, a Certara Company 5625 Dillard Drive; Suite 205 Cary, NC 27518; USA www.pharsight.com March, 2011 Benefits of Upgrading to Phoenix WinNonlin 6.2

More information

DIRECTIONS FOR SETTING UP LABELS FOR MARCO S INSERT STOCK IN WORD PERFECT, MS WORD AND ACCESS

DIRECTIONS FOR SETTING UP LABELS FOR MARCO S INSERT STOCK IN WORD PERFECT, MS WORD AND ACCESS DIRECTIONS FOR SETTING UP LABELS FOR MARCO S INSERT STOCK IN WORD PERFECT, MS WORD AND ACCESS WORD PERFECT FORMAT MARCO ITEM #A-3LI - 2.25 H x 3W Inserts First create a new document. From the main page

More information

Designing a Printed Circuit Board

Designing a Printed Circuit Board Designing a Printed Circuit Board Jamie Jacobs Design Team 4 4/03/2009 Abstract When the development stage of a circuit board is complete and working correctly, it is then necessary to take this breadboard

More information

Analysis Programs DPDAK and DAWN

Analysis Programs DPDAK and DAWN Analysis Programs DPDAK and DAWN An Overview Gero Flucke FS-EC PNI-HDRI Spring Meeting April 13-14, 2015 Outline Introduction Overview of Analysis Programs: DPDAK DAWN Summary Gero Flucke (DESY) Analysis

More information

McIDAS-V Tutorial Displaying Polar Satellite Imagery updated September 2015 (software version 1.5)

McIDAS-V Tutorial Displaying Polar Satellite Imagery updated September 2015 (software version 1.5) McIDAS-V Tutorial Displaying Polar Satellite Imagery updated September 2015 (software version 1.5) McIDAS-V is a free, open source, visualization and data analysis software package that is the next generation

More information

Okeanos Explorer has several core capabilities that are telepresence enabled which bring the experience of being at sea back to you on shore

Okeanos Explorer has several core capabilities that are telepresence enabled which bring the experience of being at sea back to you on shore Welcome everyone. This is an introduction to the Collaboration Tools used by Okeanos Explorer, the Nation s only federal ship dedicated to ocean exploration. The main objective of our program is to achieve

More information

SAP Predictive Analysis Installation

SAP Predictive Analysis Installation SAP Predictive Analysis Installation SAP Predictive Analysis is the latest addition to the SAP BusinessObjects suite and introduces entirely new functionality to the existing Business Objects toolbox.

More information

Load Manager Administrator s Guide For other guides in this document set, go to the Document Center

Load Manager Administrator s Guide For other guides in this document set, go to the Document Center Load Manager Administrator s Guide For other guides in this document set, go to the Document Center Load Manager for Citrix Presentation Server Citrix Presentation Server 4.5 for Windows Citrix Access

More information

Programming in Access VBA

Programming in Access VBA PART I Programming in Access VBA In this part, you will learn all about how Visual Basic for Applications (VBA) works for Access 2010. A number of new VBA features have been incorporated into the 2010

More information

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ PharmaSUG 2014 PO10 Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ ABSTRACT As more and more organizations adapt to the SAS Enterprise Guide,

More information

BlueJ Teamwork Tutorial

BlueJ Teamwork Tutorial BlueJ Teamwork Tutorial Version 2.0 for BlueJ Version 2.5.0 (and 2.2.x) Bruce Quig, Davin McCall School of Engineering & IT, Deakin University Contents 1 OVERVIEW... 3 2 SETTING UP A REPOSITORY... 3 3

More information

Microsoft Access Glossary of Terms

Microsoft Access Glossary of Terms Microsoft Access Glossary of Terms A Free Document From www.chimpytech.com COPYRIGHT NOTICE This document is copyright chimpytech.com. Please feel free to distribute and give away this document to your

More information

Creating a Patch Management Dashboard with IT Analytics Hands-On Lab

Creating a Patch Management Dashboard with IT Analytics Hands-On Lab Creating a Patch Management Dashboard with IT Analytics Hands-On Lab Description This lab provides a hands-on overview of the IT Analytics Solution. Students will learn how to browse cubes and configure

More information

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents:

TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents: Table of contents: Access Data for Analysis Data file types Format assumptions Data from Excel Information links Add multiple data tables Create & Interpret Visualizations Table Pie Chart Cross Table Treemap

More information

Seamless Dynamic Web Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN

Seamless Dynamic Web Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN Seamless Dynamic Web Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT The SAS Business Intelligence platform provides a wide variety of reporting interfaces and capabilities

More information

Introduction to Microsoft Access 2003

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

More information

The Scientific Data Mining Process

The Scientific Data Mining Process Chapter 4 The Scientific Data Mining Process When I use a word, Humpty Dumpty said, in rather a scornful tone, it means just what I choose it to mean neither more nor less. Lewis Carroll [87, p. 214] In

More information

TABLE OF CONTENTS. INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE...

TABLE OF CONTENTS. INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE... Starting Guide TABLE OF CONTENTS INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE... 7 ADVANCE CONCRETE USER INTERFACE... 7 Other important

More information

Knowledge Discovery from patents using KMX Text Analytics

Knowledge Discovery from patents using KMX Text Analytics Knowledge Discovery from patents using KMX Text Analytics Dr. Anton Heijs anton.heijs@treparel.com Treparel Abstract In this white paper we discuss how the KMX technology of Treparel can help searchers

More information

Database Optimizing Services

Database Optimizing Services Database Systems Journal vol. I, no. 2/2010 55 Database Optimizing Services Adrian GHENCEA 1, Immo GIEGER 2 1 University Titu Maiorescu Bucharest, Romania 2 Bodenstedt-Wilhelmschule Peine, Deutschland

More information