Automated Data Quality Assurance for Marine Observations

Size: px
Start display at page:

Download "Automated Data Quality Assurance for Marine Observations"

Transcription

1 Automated Data Quality Assurance for Marine Observations James V. Koziana Science Applications International Corporation (SAIC) Hampton, VA USA Third Meeting of GCOOS DMAC Renaissance Orlando Hotel Forbes Place Orlando, FL February

2 Outline Introduction IOOS State of Oceans (time and space) Data Quality Assurance System Quality Assurance Pyramid Science Data Challenges Quality Assurance System Block diagram and discussions Results Conclusions Present and Future Applications Wrap-up 2

3 U.S. Integrated Ocean Observing System (IOOS) Vision: Lead the way in the provision of products and services based on ocean observations for a wide range of societal benefits. Goal: Achieve unprecedented levels of resolution, quality, and distribution of all global and coastal ocean observations to improve predictions of ecosystem, weather and water, and climate events. Vice Admiral Lautenbacher, Jr., U.S. Navy (Ret.) Under Secretary of Commerce for Oceans & Atmosphere; November 21, 2005 IOOS Requirements Vision for observing systems will bring streams of real-time data from a distributed sensor system Each data provider will prepare their data using Data Management and Communications (DMAC) standards and protocols. 3

4 State of Oceans & Coasts Varies Across Time and Space Geophysical 1. Sea surface meteorological variables 2. Land Sea Stream flows 3. Sea level 4. Surface waves, currents 5. Ice distribution 6. Temperature, Salinity 7. Bathymetry Biophysical 1. Optical properties 2. Benthic habitats IOOS Core Variables Chemical 1. pco 2 2. Dissolved inorganic nutrients 3. Contaminants 4. Dissolved oxygen Biological 1. Fish species, abundance 2. Zooplankton species, abundance 3. Phytoplankton species, biomass (ocean color) 4. Waterborne pathogens 4

5 Data Quality Data Quality refers to the quality of data. Data are of high quality "if they are fit for their intended uses in operations, decision making and planning" (J.M. Juran). Alternatively, the data are deemed of high quality if they correctly represent the real-world construct to which they refer. These two views can often be in disagreement, even about the same set of data used for the same purpose. e/ee/groundhog-standing2.jpg Quality Assurance (QA) and Quality Control (QC) Quality assurance (QA): an integrated system of activities involving planning, quality control, quality assessment, reporting and quality improvement to ensure that a product or service meets defined standards of quality with a stated level of confidence. QUALITY ASSURANCE DIVISION National Center for Environmental Research And Quality Assurance Office of Research and Development U. S. Environmental Protection Agency December 10, 1997 Quality control (QC): the overall system of technical activities whose purpose is to measure and control the quality of a product or service so that it meets the needs of users. The aim is to provide quality that is satisfactory, adequate, dependable, and economical. 5

6 Quality Checks Static: Single station; single-time checks locates external out liners in observations. Unaware of previous or current meteorological or hydrological situation by other observations and grids Validity Internal consistency Vertical consistency Dynamic: Which defines the QC information by taking advantage of other available hydrological information. Position Consistency Temporal Consistency Spatial consistency Single character data descriptor for each observation Provides an overall opinion to quality by combining the information from various quality checks Algorithms used to complete the data descriptors functions of type of QC checks applied to observations and sophisticated checks Level 1: least sophisticated Level 2: medium Level 3: Most sophisticated 6

7 Algorithms more conceptual Work on less variety of data Quality Assurance Pyramid Comparison with model Comparison with remotely sensed data Comparison with statistical trends Inter-comparisons (dis-similar sensor/ platform) Inter-comparisons (nearby similar sensor/platform) Increased Accuracy Algorithms more concrete Works on wider variety of data Inter-comparisons (same sensor same platform) Rate Checks (Time Continunity) Range Limit Checks (Dynamic, Seasonal and Regional) Begin at bottom and work upward 7

8 Science Data Lifecycle Sensor Development Platform Development Platform Operations Platform Maintenance Basic Research Enhanced Understanding Algorithm Development Algorithm Implementation Data Acquisition Applications Decision Support Data Center Development Model Development Model Implementation Processing Data Center Ops QA Archiving Dissemination Model Runs Enhanced Understanding Forecasts System Development Deployment/O&M Exploitation

9 Science Data Management Challenges Data management systems are an important component of Earth Science missions Support primary mission goal of timely delivery of high quality data products to science community They are expensive and time consuming to develop and maintain Relative size of data management code vs science code Problems with traditional stovepipe development approach Continuous change associated with science algorithms The science team needs to be able to allocate their time and resources to science, not data management. Data management functions represent 60% - 80% of the code for typical science applications Continuous change inherent in research environments Highly iterative nature of algorithm development drives numerous changes to code during development and after launch Data management code which is tightly coupled to algorithms and data products Can be time consuming to modify as changes ripple throughout the code Leads to stovepipe approach that results in significant duplication of code and effort 9

10 Data Quality Assurance System for Earth Science Data and Information Scalable, modular system that can be used to address various methods of characterizing the quality of data products This approach facilitates science software development Reduce level of effort required and program risk (cost effective) Allow data management team to be more responsive to science algorithm developers (flexibility) System is designed to: Include substational core functionality that is common to any science applications Be easily configurable to work with many different data sets (observations and model output) Readily accommodate algorithm and data product additions and modifications with minimal code changes. Balance flexibility and performance 10

11 Data Quality Assurance System Block Diagram User Supplied QC Algorithms Algorithm QC 1 Algorithm QC 2 Algorithm QC 3 Algorithm Library Config. Files Input Subsystem NetCDF Control Subsystem Output Subsystem NetCDF Framework Run time defined configuration files Input Data Flow Output HDF SensorML XML Data Store HDF SensorML XML Output File Input Data ASCII DataBase ASCII DataBase Common Data Structure Components 11

12 Input Subsystem Configuration files defines the format and content of input data products Reads the configuration file to identify input parameters Reads a data record from the file and parses it into discrete parameters Attaches the parameters to the data structure Example: Upstream subsystem adds a parameter to their output product that must be included in current application s output The traditional approach requires modifying the input file reader, the data structures, and the output file writer This QA approach requires modifying the ASCII input configuration file 12

13 Output Subsystem Configuration files defines the format and content of input data products Add new formats and NOT re-define the QA system [ASCII, HDF, SensorML] Retrieves parameters by name from the common data structures Formats the data for a specific output product Writes the data to the output file Example: Add new configuration element: Add a parameter to the output product The traditional approach requires modifying an algorithm, the data structures, and the output file writer This QA approach requires modifying an algorithm and adding a line to the ASCII configuration file 13

14 Control Subsystem Controls the data flow of the quality control processing Provides the linkage between the QA subsystems Balances the flexibility and performance of the QA system Readily accommodates algorithm and data product additions with minimal code changes. Activities for the subsystem controlled by configuration file Example: Perform a range limit check and time continuity check for sea surface temperature. Configuration file is configured to execute two specific data quality algorithms. Performs Range limit check (i.e., compare with pre-established thresholds) Performs Time Continuity (i.e., range of parameter over time) based on the provided appropriate. Data and aggregate quality flag information are put into the Data Store 14

15 Data Store Implemented using common data structure for application-specific data structures assembled from standard building blocks. Subsystem elements are generic and configurable Architectural approach facilitates changing on the fly Underlying data structures allows for the addition of parameters or new algorithms Retrieve parameters by name Subsystems and the algorithm library are able to query data structures and retrieve the necessary information Internal data sets are represented by parameter classes which no longer correspond to the input and/or output data formats Parameter classes correspond to the computer language-specific data types (ex., character, unsigned character, short, unsigned short, etc.) Easy implementation of data processing algorithms, as the algorithms do not need to write the code specific to the original input data format and the ultimate output format Localized changes to algorithms are made with minimal changes to the input, control, data store and output modules. 15

16 Common Data Structures Application specific data structures are assembled from standard building blocks Can be used to model many different instruments Facilitates changing the underlying data structures Parameters can be added on the fly Facilitates adding new algorithms and new parameters to the application Localizes changes to algorithms and minimizes changes to input, data structure, and output modules Parameters can be retrieved by name Allows other modules (framework and algorithms) to query data structures and retrieve information required Allows other framework components to be generic and configurable 16

17 Algorithm Library Implemented using a modular architecture that encapsulates algorithms into decoupled, re-useable modules while providing the mechanism for assembling them into a working system. Library of re-useable validation algorithms Implement the algorithms as generic re-useable modules based upon Reference [NDBC Technical Document 03-02] that can be configured to work with parameters from any source. Comprised of data quality algorithms that range from fairly simple rates and limit checks to sophisticated parameters into comparisons that exploit the relationship between parameters. Some data providers will require more sophiscated algorithms that provide a higher level of accuracy presented by specific configuration of sensors. These algorithms can be easily added to the algorithm library. For this paper we have configured a rate limit check and time continuity check algorithms to process several marine parameters. 17

18 Dqa_app input_data input_data_cfg input_limits input_limits_cfg output_data output_data_cfg NDBC Provided Air Temp Data Buoy /25/ /25/2008 0:00:00 ATMP /25/2008 1:00:00 ATMP /25/2008 2:00:00 ATMP /25/2008 3:00:00 ATMP /25/2008 4:00:00 ATMP /25/2008 5:00:00 ATMP /25/2008 6:00:00 ATMP /25/2008 7:00:00 ATMP /25/2008 8:00:00 ATMP /25/2008 9:00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP QA Range Checks (Hard & soft flags) Time Continunity Checks (Hard & soft flags) Quality Checked Data for Buoy /25/ /25/2008 0:00:00 ATMP /25/2008 1:00:00 ATMP /25/2008 2:00:00 ATMP /25/2008 3:00:00 ATMP /25/2008 4:00:00 ATMP /25/2008 5:00:00 ATMP /25/2008 6:00:00 ATMP /25/2008 7:00:00 ATMP /25/2008 8:00:00 ATMP /25/2008 9:00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP V /25/ :00:00 ATMP V /25/ :00:00 ATMP L /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP /25/ :00:00 ATMP Input/Output Configuration File Type Data Parameters Data Set Dimensions Input, Output and Control Configuration Files Control Subsystem (ie., Data Flow) Quality Assurance Procedures 18

19 Source of Data Western Gulf of Mexico Recent Marine Data Louisiana/Mississippi Coastal Region Recent Marine Data 19

20 Regional and Seasonal Limits Central Gulf of Mexico Parameter JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC BARO MAX BARO MIN ATMP MAX ATMP MIN WTMP MAX WTMP MIN WDIR MAX WDIR MIN WSPD MAX WSPD MIN WVHGT MX WVHGT MN NDBC Technical Document

21 V L Note: L: Failed Limits Check V: Failed Time-Continunity Test 21

22 42007 Katrina August 23 to 29, 2005 a soft flags for observations above the Seasonal/Regional Max Limit Storm Flag Seasonal/Regional Max Limit Seasonal/Regional Max Limit Wind Speed Seasonal/Regional Min Limit Seasonal/Regional Min Limit (hours) 22

23 Present and Future Applications QA system is well-suited for a diverse science community employing many different methods to characterize the quality of their data products. Allow single-data providers to large-scale data providers (i.e., observational and model) to perform automatic quality assurance on their data products QA system processes a real-time data stream High quality data product Associated metadata Aggregated quality flags Expanding the QA system To address additional input/output data types To enhance the algorithm library by developing additional quality control algorithms o simple quality tests (ex., storm limits, time continuity, internal consistency and others) o higher order algorithm development that exploit the relationship between sensors and parameters. To explore more supplicated algorithms that provide higher level accuracy presented by specific configuration of sensors. Explore applying data mining to quality control Define interface to the QA for data providers Use of the state-of-the-art visualization Use of analysis tools to monitor the real-time data streams How users analyze data to determine the root causes of problems and editing 23

24 Wrap-Up Scalable, modular Data Quality Assurance System QA Algorithm Library is extendable to other data parameters by changing ASCII configuration files Reduces level of effort required (cost effective) Be easily configurable to work with many different data sets (observations and model output) Readily accommodate algorithm and data product additions and modifications with minimal code changes. QA was performed at same confidence level (Range Limit and Time Continuity Checks) Initial validation testing with NDBC products Limited set of daily air temp (24 hours station 42007) and wind speed (3 days station 42001). Air temp (3 hard flags) Wind speed (48 soft flags) 24

25 First Quality Assurance of Real-Time Ocean Data (QARTOD) workshop Defined minimum standards for QA/QC for Real-time observations Flags and tests documented in metadata Each observing system should decide their own best method for: Data description Delivery Testing No storage format, transport or metadata standards recommended 25

26 Additional Charts James V. Koziana Science Applications International Corporation (SAIC) Hampton, VA USA 26

27

28 How to update the input files Plotting capabilities 1. General upper limit 2. General seasonal limit 3. Seasonal-upper limit 4. Seasonal-lower limit 5. Time Cont. general limit 6. Time Cont, seasonal limit 1. Plotting input data 2. Plotting output data 3. Google maps

29

5PRESENTING AND DISSEMINATING

5PRESENTING AND DISSEMINATING 5PRESENTING AND DISSEMINATING INFORMATION This chapter presents information and guidance on how to present and disseminate marine water quality monitoring data to the program s intended audience. Section

More information

Current JGOFS DMTT activities, and data management requirements for future marine biogeochemical projects - insights for modelers

Current JGOFS DMTT activities, and data management requirements for future marine biogeochemical projects - insights for modelers 1 Current JGOFS DMTT activities, and data management requirements for future marine biogeochemical projects - insights for modelers Margarita Conkright Ocean Climate Laboratory National Oceanographic Data

More information

West Coast Observation Project. West Coast Observing System Project Brief

West Coast Observation Project. West Coast Observing System Project Brief West Coast Observation Project Click to edit Master text styles Second level Third level Fourth level» Fifth level West Coast Observing System Project Brief Prepared by NCDDC August 2007 1 Outline West

More information

NOAA N-Wave Update N-WAVE V. NOAA Research Network. Joint Techs Columbus 13 July 2010

NOAA N-Wave Update N-WAVE V. NOAA Research Network. Joint Techs Columbus 13 July 2010 NOAA N-Wave Update N-WAVE V NOAA Research Network Joint Techs Columbus 13 July 2010 Mark Mutz, NOAA mark.mutz@noaa.gov Caren Litvanyi, N-Wave NOC litvanyi@grnoc.iu.edu NOAA s Mission To understand and

More information

C3S Data Portal: Setting the scene

C3S Data Portal: Setting the scene C3S Data Portal: Setting the scene Baudouin Raoult Baudouin.raoult@ecmwf.int Funded by the European Union Implemented by Evaluation & QC function from European commission e.g.,fp7 Space call Selected set

More information

OCEAN NETWORKS CANADA UPDATE

OCEAN NETWORKS CANADA UPDATE OCEAN NETWORKS CANADA UPDATE Ocean Obs RCN Benoît Pirenne December 13, 2015, San Francisco AN INITIATIVE OF 1 The ONC Observatory: Home to VENUS (coastal), NEPTUNE (off-shore) and Cambridge Bay (Arctic)

More information

Towards a Canadian Integrated Ocean Observing System

Towards a Canadian Integrated Ocean Observing System Towards a Canadian Integrated Ocean Observing System CMOS Luncheon (Ottawa) February 28, 2018 Andrew Stewart Fisheries and Oceans Canada The Ocean is Valuable Ocean Economy: Ocean-based industries Natural

More information

AWIPS Technology Infusion Darien Davis NOAA/OAR Forecast Systems Laboratory Systems Development Division April 12, 2005

AWIPS Technology Infusion Darien Davis NOAA/OAR Forecast Systems Laboratory Systems Development Division April 12, 2005 AWIPS Technology Infusion Darien Davis NOAA/OAR Forecast Systems Laboratory Systems Development Division Plans for AWIPS Next Generation 1 What s a nice lab like you, doing in a place like this? Plans

More information

A Climate Monitoring architecture for space-based observations

A Climate Monitoring architecture for space-based observations A Climate Monitoring architecture for space-based observations Wenjian Zhang World Meteorological Organization Mark Dowell European Commission Joint Research Centre WMO OMM World Climate Conference-3:

More information

Python: Working with Multidimensional Scientific Data. Nawajish Noman Deng Ding

Python: Working with Multidimensional Scientific Data. Nawajish Noman Deng Ding Python: Working with Multidimensional Scientific Data Nawajish Noman Deng Ding Outline Scientific Multidimensional Data Ingest and Data Management Analysis and Visualization Extending Analytical Capabilities

More information

Requirements (QASR) - Chapter 6. HYDRO-METEOROLOGIC and HYDRAULIC MONITORING

Requirements (QASR) - Chapter 6. HYDRO-METEOROLOGIC and HYDRAULIC MONITORING CERP Quality Assurance Systems Requirements (QASR) - Chapter 6 HYDRO-METEOROLOGIC and HYDRAULIC MONITORING Purpose and Scope Purpose is to provide guidelines for efficient and effective production of hydrologic

More information

Task Team on Data Management Report

Task Team on Data Management Report Task Team on Data Management Report Chair: Mayra Pazos (GDP representative) Members: Bruce Bradshaw RNODC representative Bill Burnett NDBC data manager Jean Rolland SOC representatvie Pierre Blouch Meteo-France

More information

Earth Observation Services in Collaborative Platforms

Earth Observation Services in Collaborative Platforms Earth Observation Services in Collaborative Platforms Elecnor Deimos Overview Elecnor DEIMOS: the technology branch of ELECNOR Space is core business, with spillovers to Aerospace, Defense, Transport,

More information

QUALITY CONTROL FOR UNMANNED METEOROLOGICAL STATIONS IN MALAYSIAN METEOROLOGICAL DEPARTMENT

QUALITY CONTROL FOR UNMANNED METEOROLOGICAL STATIONS IN MALAYSIAN METEOROLOGICAL DEPARTMENT QUALITY CONTROL FOR UNMANNED METEOROLOGICAL STATIONS IN MALAYSIAN METEOROLOGICAL DEPARTMENT By Wan Mohd. Nazri Wan Daud Malaysian Meteorological Department, Jalan Sultan, 46667 Petaling Jaya, Selangor,

More information

ALASKA OCEAN OBSERVING SYSTEM DATA ASSEMBLY CENTER AND DATA MANAGEMENT SUBSYSTEM PLAN EFFECTIVE: JUNE 1, 2016 MAY 31, 2021

ALASKA OCEAN OBSERVING SYSTEM DATA ASSEMBLY CENTER AND DATA MANAGEMENT SUBSYSTEM PLAN EFFECTIVE: JUNE 1, 2016 MAY 31, 2021 ALASKA OCEAN OBSERVING SYSTEM DATA ASSEMBLY CENTER AND DATA MANAGEMENT SUBSYSTEM PLAN EFFECTIVE: JUNE 1, 2016 MAY 31, 2021 1.0 INTRODUCTION The Alaska Ocean Observing System (AOOS) was established in 2004

More information

Toward the Development of a Comprehensive Data & Information Management System for THORPEX

Toward the Development of a Comprehensive Data & Information Management System for THORPEX Toward the Development of a Comprehensive Data & Information Management System for THORPEX Mohan Ramamurthy, Unidata Steve Williams, JOSS Jose Meitin, JOSS Karyn Sawyer, JOSS UCAR Office of Programs Boulder,

More information

DataONE: Open Persistent Access to Earth Observational Data

DataONE: Open Persistent Access to Earth Observational Data Open Persistent Access to al Robert J. Sandusky, UIC University of Illinois at Chicago The Net Partners Update: ONE and the Conservancy December 14, 2009 Outline NSF s Net Program ONE Introduction Motivating

More information

S-101. The New ENC Product Specification. Julia Powell S-100 Working Group Chair

S-101. The New ENC Product Specification. Julia Powell S-100 Working Group Chair S-101 The New ENC Product Specification Julia Powell S-100 Working Group Chair S-101 Major step forward in product specifications for Electronic Navigational Charts Improved Modeling Greater Flexibility

More information

N-Wave Overview. Westnet Boulder, CO 5 June 2012

N-Wave Overview. Westnet Boulder, CO 5 June 2012 N-Wave Overview Mark Mutz Westnet Boulder, CO 5 June 2012 mark.mutz@noaa.gov Outline Background Network Design & Operation Uptime and Traffic Stats Futures NOAA s Mission To understand and predict changes

More information

Offshore renewables structural monitoring. Safeguarding the quality and productivity of your offshore wind farm assets.

Offshore renewables structural monitoring. Safeguarding the quality and productivity of your offshore wind farm assets. Offshore renewables structural monitoring Safeguarding the quality and productivity of your offshore wind farm assets. Strainstall / Offshore renewables structural monitoring Specialist offshore expertise

More information

NOAA Integrated Ocean Observing System (IOOS) Data Integration Framework Richard Crout NOAA NWS National Data Buoy Center

NOAA Integrated Ocean Observing System (IOOS) Data Integration Framework Richard Crout NOAA NWS National Data Buoy Center NOAA Integrated Ocean Observing System (IOOS) Data Integration Framework Richard Crout NOAA NWS National Data Buoy Center GCOOS Board of Directors Meeting Corpus Christi, TX 19 August 2008 Outline NOAA

More information

JAMSTEC "Cyber System Current Status

JAMSTEC Cyber System Current Status JAMSTEC "Cyber System Current Status Ken ichi Itakura (JAMSTEC) Dec 5 6, 2016 The 24th Workshop on Sustained Simulation Performance (HLRS, Germany) 1 Outline JAMSTEC Super computer system: ES Cyber System

More information

DEVELOPMENT OF A DATA MANAGEMENT SYSTEM FOR LONG-TERM ECOLOGICAL RESEARCH

DEVELOPMENT OF A DATA MANAGEMENT SYSTEM FOR LONG-TERM ECOLOGICAL RESEARCH DEVELOPMENT OF A DATA MANAGEMENT SYSTEM FOR LONG-TERM ECOLOGICAL RESEARCH William K. Michener, Baruch Institute Robert A. McLaughlin, Baruch Institute Marvin F. Marozas, Coastal Carolina College INTRODUCTION

More information

User Guide for the WegenerNet Data Portal

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

More information

DMAC Report to the GCOOS BOD. GCOOS Board of Directors Meeting Biloxi, MS February 2008

DMAC Report to the GCOOS BOD. GCOOS Board of Directors Meeting Biloxi, MS February 2008 DMAC Report to the GCOOS BOD GCOOS Board of Directors Meeting Biloxi, MS 26-27 February 2008 GCOOS DMAC Membership 2008 Steve Anderson - Horizon Marine! Brenda Babin - LUMCON! Steve Beaudet - SAIC! Julie

More information

Oceanic Domain Awareness- A Concept Rear Admiral Dr. S Kulshrestha, retd

Oceanic Domain Awareness- A Concept Rear Admiral Dr. S Kulshrestha, retd Oceanic Domain Awareness- A Concept Rear Admiral Dr. S Kulshrestha, retd He knows the course of the stars and can always orient himself. He knows the value of signs, both regular, accidental and abnormal,

More information

High Confidence Transportation Cyber-Physical Systems: Automotive, Aviation, and Rail

High Confidence Transportation Cyber-Physical Systems: Automotive, Aviation, and Rail High Confidence Transportation Cyber-Physical Systems: Automotive, Aviation, and Rail November 20, 2008 Chris Greer Director, US National Coordination Office Networking and Information Technology Research

More information

QUALITY CONTROL Prepared: TenneT team Reviewed: M. Müller Approved: F. Wester

QUALITY CONTROL Prepared: TenneT team Reviewed: M. Müller Approved: F. Wester POSITION PAPER STAKE HOLDER CONSULTATION PROCESS OFFSHORE GRID NL Type: Position paper Work stream Technical Topic: T.18 Data acquisition systems on offshore platform Filename ONL-TTB-03103 T18_Data acquisition

More information

Canada s Fish Habitat Law. Fish - Water Quantity Interactions Okanagan Water Stewardship Council Meeting Oct 12, Kelowna, B.C.

Canada s Fish Habitat Law. Fish - Water Quantity Interactions Okanagan Water Stewardship Council Meeting Oct 12, Kelowna, B.C. Canada s Fish Habitat Law Fish - Water Quantity Interactions Okanagan Water Stewardship Council Meeting Oct 12, 2006 - Kelowna, B.C. Disclaimer This presentation was developed at the specific request of

More information

Andrew Lee BEng (Hons) CEng MIStructE FGS FPWS

Andrew Lee BEng (Hons) CEng MIStructE FGS FPWS Jim Twaddle BSc (Hons) FGS Andrew Lee BEng (Hons) CEng MIStructE FGS FPWS 11 June 2010 ME50252/RE001 !! " # $ $ % # & " '(! ) # $ $ % * $ ( & " # $ $ % $ # $ $ % +, $ # $ $ % #! " $ # $ $ % -! $ # $ $

More information

3. EXCEL FORMULAS & TABLES

3. EXCEL FORMULAS & TABLES Winter 2019 CS130 - Excel Formulas & Tables 1 3. EXCEL FORMULAS & TABLES Winter 2019 Winter 2019 CS130 - Excel Formulas & Tables 2 Cell References Absolute reference - refer to cells by their fixed position.

More information

J1.6 MONITORING AND ANALYZING THE GLOBAL OCEAN OBSERVING SYSTEM WITH THE OBSERVING SYSTEM MONITORING CENTER

J1.6 MONITORING AND ANALYZING THE GLOBAL OCEAN OBSERVING SYSTEM WITH THE OBSERVING SYSTEM MONITORING CENTER J1.6 MONITORING AND ANALYZING THE GLOBAL OCEAN OBSERVING SYSTEM WITH THE OBSERVING SYSTEM MONITORING CENTER Kevin M. O'Brien 1*,S. Hankin 2, R. Schweitzer 3, K. Kern 4, M. Little 4,T. Habermann 5, N. Auerbach

More information

New CLIK (CLIK 3.0) CLimate Information tool Kit User Manual

New CLIK (CLIK 3.0) CLimate Information tool Kit User Manual New CLIK (CLIK 3. 0) CLimate Information tool Kit User Manual Userr Manual Draft ver.1, 2014. 10. Hyunrok Lee and Sang-Cheol Kim Climate Informatics and Applicationn Team, Research Department,, 12, Centum

More information

Introduction of SeaDataNet and EMODNET Working towards a harmonised data infrastructure for marine data. Peter Thijsse MARIS

Introduction of SeaDataNet and EMODNET Working towards a harmonised data infrastructure for marine data. Peter Thijsse MARIS Introduction of SeaDataNet and EMODNET Working towards a harmonised data infrastructure for marine data Peter Thijsse MARIS CLIPC & IS-ENES 2 workshop, KNMI, November 2014 Outline 1. Introduction to marine

More information

IMOS/AODN ocean portal: tools for data delivery. Roger Proctor, Peter Blain, Sebastien Mancini IMOS

IMOS/AODN ocean portal: tools for data delivery. Roger Proctor, Peter Blain, Sebastien Mancini IMOS IMOS/AODN ocean portal: tools for data delivery Roger Proctor, Peter Blain, Sebastien Mancini IMOS Data from IMOS: The six Nodes Bluewater and Climate Node open ocean focus Five Regional Nodes continental

More information

A Software Developing Environment for Earth System Modeling. Depei Qian Beihang University CScADS Workshop, Snowbird, Utah June 27, 2012

A Software Developing Environment for Earth System Modeling. Depei Qian Beihang University CScADS Workshop, Snowbird, Utah June 27, 2012 A Software Developing Environment for Earth System Modeling Depei Qian Beihang University CScADS Workshop, Snowbird, Utah June 27, 2012 1 Outline Motivation Purpose and Significance Research Contents Technology

More information

October 27, Jim Ruff Manager Mainstem Passage and River Operations

October 27, Jim Ruff Manager Mainstem Passage and River Operations Bill Bradbury Chair Oregon Henry Lorenzen Oregon W. Bill Booth Idaho James A. Yost Idaho Jennifer Anders Vice Chair Montana Pat Smith Montana Tom Karier Washington Phil Rockefeller Washington October 27,

More information

POSITION PAPER. QUALITY CONTROL Prepared: TenneT team Reviewed: M. Müller Approved: F. Wester Release.

POSITION PAPER. QUALITY CONTROL Prepared: TenneT team Reviewed: M. Müller Approved: F. Wester Release. POSITION PAPER STAKE HOLDER CONSULTATION PROCESS OFFSHORE GRID NL Type: Position paper Work stream Technical Topic: T.18 Data acquisition systems on offshore platform Filename ONL-TTB-03103 T18_Data acquisition

More information

Welcome Participants!

Welcome Participants! Welcome Participants! Portsmouth Harbor Response Initiative Coastal Response Research Center June 27, 2007 1 Coastal Response Research Center (CRRC) Staff Co-Directors: UNH Nancy Kinner NOAA Amy Merten

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2017 2018 Live Online Version 1 Information last updated 09 October 2017 Please note: Information and dates in this timetable are subject to change. CIMA Cert BA Course

More information

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju 0 - Total Traffic Content View Query This report is based on sampled data. Jun 1, 2009 - Jun 25, 2010 Comparing to: Site 300 Unique Pageviews 300 150 150 0 0 Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec

More information

Desarrollo de una herramienta de visualización de datos oceanográficos: Modelos y Observaciones

Desarrollo de una herramienta de visualización de datos oceanográficos: Modelos y Observaciones Desarrollo de una herramienta de visualización de datos oceanográficos: Modelos y Observaciones J. Fernandez, J. Lopez, I. Carlos, F. Jerez, F. Hermosilla, M. Espino SIMO, LIM-UPC, CIIRC FIELD_AC 7 th

More information

How to use the SATURN Observation Network: Endurance Stations Site: Table of Contents

How to use the SATURN Observation Network: Endurance Stations Site: Table of Contents How to use the SATURN Observation Network: Endurance Stations Site: Table of Contents Preface... 2 Introduction to the SATURN Interface... 3 Fixed station user interface... 5 The Recent Tab... 6 Reading

More information

New Concept for Article 36 Networking and Management of the List

New Concept for Article 36 Networking and Management of the List New Concept for Article 36 Networking and Management of the List Kerstin Gross-Helmert, AFSCO 28 th Meeting of the Focal Point Network EFSA, MTG SEAT 00/M08-09 THE PRESENTATION Why a new concept? What

More information

Martin Purvis CEO. Presentation following the AGM. 26 April 2012

Martin Purvis CEO. Presentation following the AGM. 26 April 2012 Martin Purvis CEO Presentation following the AGM 26 April 212 IMPORTANT NOTICE Nothing in this presentation constitutes an offer of securities for sale. This presentation contains certain forward-looking

More information

COURSE LISTING. Courses Listed. with SAP Hybris Marketing Cloud. 24 January 2018 (23:53 GMT) HY760 - SAP Hybris Marketing Cloud

COURSE LISTING. Courses Listed. with SAP Hybris Marketing Cloud. 24 January 2018 (23:53 GMT) HY760 - SAP Hybris Marketing Cloud with SAP Hybris Marketing Cloud Courses Listed HY760 - SAP Hybris Marketing Cloud C_HYMC_1702 - SAP Certified Technology Associate - SAP Hybris Marketing Cloud (1702) Implementation Page 1 of 12 All available

More information

National and Regional FDR Data Management in Southeast Asia

National and Regional FDR Data Management in Southeast Asia National and Regional FDR Data Management in Southeast Asia GUSWANTO Research and Development Center Indonesian Meteorological and Geophysical Agency () International Workshop On Advances In Operational

More information

Data Management Plan: OR Mooring - Ocean Acidification related measurements (Taken from NOAA Data Sharing Template and adapted for IOOS Certification)

Data Management Plan: OR Mooring - Ocean Acidification related measurements (Taken from NOAA Data Sharing Template and adapted for IOOS Certification) I. Type of data and information created 1. What data will you collect or create in the research? Contextual statement describing what data are collected and relevant URL (IOOS Certification, f 2) Hales

More information

Data Stewardship NOAA s Programs for Archive, Access, and Producing Climate Data Records

Data Stewardship NOAA s Programs for Archive, Access, and Producing Climate Data Records Data Stewardship NOAA s Programs for Archive, Access, and Producing Climate Data Records John Bates, NOAA s National Climatic Data Center Mitch Goldberg, NOAA s Office of Research and Applications 1 Background

More information

Stewarding NOAA s Data: How NCEI Allocates Stewardship Resources

Stewarding NOAA s Data: How NCEI Allocates Stewardship Resources Stewarding NOAA s Data: How NCEI Allocates Stewardship Resources Eric Kihn, Ph.D. Director, NCEI Center for Coasts, Oceans and Geophysics (CCOG) Krisa M. Arzayus, Ph.D. Deputy Director (Acting), NCEI Center

More information

Wide-Area Reliability Monitoring and Visualization Tools

Wide-Area Reliability Monitoring and Visualization Tools OE Visualization and Controls Peer Review Wide-Area Reliability Monitoring and Visualization Tools Carlos Martinez CERTS - Electric Power Group 21 October 2008 Washington, D.C. Presentation Outline Research

More information

Characterization and Modeling of Deleted Questions on Stack Overflow

Characterization and Modeling of Deleted Questions on Stack Overflow Characterization and Modeling of Deleted Questions on Stack Overflow Denzil Correa, Ashish Sureka http://correa.in/ February 16, 2014 Denzil Correa, Ashish Sureka (http://correa.in/) ACM WWW-2014 February

More information

Online intercomparison of models and observations using OGC and community standards

Online intercomparison of models and observations using OGC and community standards Online intercomparison of models and observations using OGC and community standards Alastair Gemmell * Jon Blower Keith Haines Adit Santokhee Reading e-science e Centre, Environmental Systems Science Centre,

More information

Vision for WMO Integrated Global Observing System (WIGOS) in 2040 Context, purpose, scope, and current status

Vision for WMO Integrated Global Observing System (WIGOS) in 2040 Context, purpose, scope, and current status Vision for WMO Integrated Global Observing System (WIGOS) in 2040 Context, purpose, scope, and current status Lars Peter Riishojgaard WMO Secretariat What is the WMO Integrated Global Observing System

More information

Study on Fish Productivity in Bichhiya River and Govindgarh Lake of district Rewa, Madhya Pradesh

Study on Fish Productivity in Bichhiya River and Govindgarh Lake of district Rewa, Madhya Pradesh International Journal of Scientific and Research Publications, Volume 7, Issue 7, July 2017 522 Study on Fish Productivity in Bichhiya River and Govindgarh Lake of district Rewa, Madhya Pradesh Dr. Ajay

More information

User guide for MODIS derived vegetation fractional cover metrics

User guide for MODIS derived vegetation fractional cover metrics User guide for MODIS derived vegetation fractional cover metrics Introduction The MODIS derived vegetation fractional cover metrics is a collection of image files which statistically summarise the time

More information

BODY / SYSTEM Specifically, the website consists of the following pages:

BODY / SYSTEM Specifically, the website consists of the following pages: GULF OF MEXICO MODELING SYSTEM WEBSITE http://www7330.nrlssc.navy.mil/gomms/index.html R. Holladay*, S. Holladay*, S. derada Naval Research Laboratory, Stennis Space Center, MS, USA *Student Intern SUMMARY

More information

COUNCIL MEETINGS July 2017 to June 2018

COUNCIL MEETINGS July 2017 to June 2018 COUNCIL MEETINGS Name 03-Jul 24-Jul 07-Aug 21-Aug 04-Sep 18-Sep 02-Oct 23-Oct 06-Nov 20-Nov 04-Dec 18-Dec 22-Jan 05-Feb 19-Feb 05-Mar 19-Mar 09-Apr 23-Apr 07-May 21-May 04-Jun 18-Jun Christie LA Sexton

More information

Development of GFCS: The WMO contribution and the need for many partners. David Grimes President, World Meteorological Organization

Development of GFCS: The WMO contribution and the need for many partners. David Grimes President, World Meteorological Organization Development of GFCS: The WMO contribution and the need for many partners David Grimes President, World Meteorological Organization Side event at the at the International Conference on Climate Services,

More information

COUNTY OF RIVERSIDE ENTERPRISE SOLUTIONS FOR PROPERTY TAXATION

COUNTY OF RIVERSIDE ENTERPRISE SOLUTIONS FOR PROPERTY TAXATION COUNTY OF RIVERSIDE ENTERPRISE SOLUTIONS FOR PROPERTY TAXATION PRESENTERS PANEL GUESTS DON KENT RIVERSIDE COUNTY TREASURER- TAX COLLECTOR LARRY WARD ASSESSOR - COUNTY CLERK - RECORDER KAN WANG PROPERTY

More information

Excel Functions & Tables

Excel Functions & Tables Excel Functions & Tables SPRING 2016 Spring 2016 CS130 - EXCEL FUNCTIONS & TABLES 1 Review of Functions Quick Mathematics Review As it turns out, some of the most important mathematics for this course

More information

Data and information sharing WMO global systems

Data and information sharing WMO global systems Data and information sharing WMO global systems Tommaso Abrate Scientific Officer World Meteorological Organization E-mail: tabrate@wmo.int 13 March, 2012 World Hydrological Cycle Observing System (WHYCOS)

More information

MAJOR RESEARCH EQUIPMENT $240,450,000 AND FACILITIES CONSTRUCTION

MAJOR RESEARCH EQUIPMENT $240,450,000 AND FACILITIES CONSTRUCTION MAJOR RESEARCH EQUIPMENT $240,450,000 AND FACILITIES CONSTRUCTION The FY 2007 Budget Request for the Major Research Equipment and Facilities Construction (MREFC) account is $240.45 million, an increase

More information

Aswani K. Volety, Michael Savarese, Greg Tolley, Lesli Haynes, Amanda Booth; Coastal Watershed Institute,

Aswani K. Volety, Michael Savarese, Greg Tolley, Lesli Haynes, Amanda Booth; Coastal Watershed Institute, Aswani K. Volety, Michael Savarese, Greg Tolley, Lesli Haynes, Amanda Booth; Coastal Watershed Institute, Florida Gulf Coast University William Arnold; Florida Wildlife Research Institute Patricia Goodman,

More information

Flexible Framework for Mining Meteorological Data

Flexible Framework for Mining Meteorological Data Flexible Framework for Mining Meteorological Data Rahul Ramachandran *, John Rushing, Helen Conover, Sara Graves and Ken Keiser Information Technology and Systems Center University of Alabama in Huntsville

More information

The New Electronic Chart Product Specification S-101: An Overview

The New Electronic Chart Product Specification S-101: An Overview The New Electronic Chart Product Specification S-101: An Overview Julia Powell Marine Chart Division, Office of Coast Survey, NOAA 1315 East West Hwy, Silver Spring, MD 20715 Julia.Powell@noaa.gov 301-713-0388

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2018 Live Online Information version 8 last updated 04/05/18 Please note information and dates are subject to change. Premium Learning Partner 2018 CIMA Cert BA Course Overview

More information

Baltic Sea Pilot Project BALSAM

Baltic Sea Pilot Project BALSAM Baltic Sea Pilot Project BALSAM Testing new concepts for integrated environmental monitoring of the Baltic Sea Maria Laamanen, Professional Secretary MSFD PCG meeting 12-13 Setp 2013, Brussels Maria Laamanen

More information

The Web Hierarchical Ordering Mechanism (WHOM) a tool for ordering HDF and HDF-EOS Data

The Web Hierarchical Ordering Mechanism (WHOM) a tool for ordering HDF and HDF-EOS Data The Goddard Earth Sciences Distributed Active Archive Center http://daac.gsfc.nasa.gov The Web Hierarchical Ordering Mechanism (WHOM) a tool for ordering HDF and HDF-EOS Data Presented by: James E. Johnson

More information

Version 3 Updated: 10 March Distributed Oceanographic Match-up Service (DOMS) User Interface Design

Version 3 Updated: 10 March Distributed Oceanographic Match-up Service (DOMS) User Interface Design Distributed Oceanographic Match-up Service (DOMS) User Interface Design Shawn R. Smith 1, Jocelyn Elya 1, Adam Stallard 1, Thomas Huang 2, Vardis Tsontos 2, Benjamin Holt 2, Steven Worley 3, Zaihua Ji

More information

Continuous Monitoring Of Lakes Bloomington and Evergreen Using Buoys

Continuous Monitoring Of Lakes Bloomington and Evergreen Using Buoys Lakes After Hours: Continuous Monitoring Of Lakes Bloomington and Evergreen Using Buoys JILL MAYES, TONY ALWOOD AND RICK TWAIT, CITY OF BLOOMINGTON WATER TREATMENT PLANT Why Perform Continuous Monitoring?

More information

IMS CLDB and EnviDB. Universal & Reliable Climate Database Management System. IMS CLDB and EnviDB Climatological and Integrated Environmental Database

IMS CLDB and EnviDB. Universal & Reliable Climate Database Management System. IMS CLDB and EnviDB Climatological and Integrated Environmental Database Scalable solution: cost effective LITE version full-featured CDMS* with variety of optional modules available cloud solution High Availability Option Manual or Automatic Data Sources Highly Configurable

More information

BEST PRACTICE GUIDE ON THE USE OF THE ELECTRONIC COMMON TECHNICAL DOCUMENT

BEST PRACTICE GUIDE ON THE USE OF THE ELECTRONIC COMMON TECHNICAL DOCUMENT CMD(h) BEST PRACTICE GUIDE ON THE USE OF THE ELECTRONIC COMMON TECHNICAL DOCUMENT (ectd) IN THE MUTUAL RECOGNITION AND DECENTRALISED PROCEDURES April 2008 in the MRP/DCP April 2008 Page 1/29 TABLE OF CONTENTS

More information

InSAR Operational and Processing Steps for DEM Generation

InSAR Operational and Processing Steps for DEM Generation InSAR Operational and Processing Steps for DEM Generation By F. I. Okeke Department of Geoinformatics and Surveying, University of Nigeria, Enugu Campus Tel: 2-80-5627286 Email:francisokeke@yahoo.com Promoting

More information

Title Vega: A Flexible Data Model for Environmental Time Series Data

Title Vega: A Flexible Data Model for Environmental Time Series Data Title Vega: A Flexible Data Model for Environmental Time Series Data Authors L. A. Winslow 1, B. J. Benson 1, K. E. Chiu 3, P. C. Hanson 1, T. K. Kratz 2 1 Center for Limnology, University of Wisconsin-Madison,

More information

eresearch Collaboration across the Pacific:

eresearch Collaboration across the Pacific: eresearch Collaboration across the Pacific: Marine Systems and Australian Marine Science Craig Johnson University of Tasmania Outline Introduce the Australian Ocean Network Possibilities for trans-pacific

More information

Data Portal and Integra.on in JAMSTEC

Data Portal and Integra.on in JAMSTEC Data Portal and Integra.on in JAMSTEC Yasunori Hanafusa Data Research Center for Marine-Earth Sciences (DrC) Agency for Marine-Earth Science and Technology (JAMSTEC) 1 Overview of Data Management in JAMSTEC

More information

The CEDA Archive: Data, Services and Infrastructure

The CEDA Archive: Data, Services and Infrastructure The CEDA Archive: Data, Services and Infrastructure Kevin Marsh Centre for Environmental Data Archival (CEDA) www.ceda.ac.uk with thanks to V. Bennett, P. Kershaw, S. Donegan and the rest of the CEDA Team

More information

The Logical Data Store

The Logical Data Store Tenth ECMWF Workshop on Meteorological Operational Systems 14-18 November 2005, Reading The Logical Data Store Bruce Wright, John Ward & Malcolm Field Crown copyright 2005 Page 1 Contents The presentation

More information

JCOMM Observing Programme Support Centre

JCOMM Observing Programme Support Centre JCOMM Observing Programme Support Centre GO-SHIP International Planning Meeting Portland OR, Febr 21 2010 Yves Desaubies Mathieu Belbeoch Hester Viola Aims of this talk Presentation of JCOMMOPS Infrastructure

More information

Using ESML in a Semantic Web Approach for Improved Earth Science Data Usability

Using ESML in a Semantic Web Approach for Improved Earth Science Data Usability Using in a Semantic Web Approach for Improved Earth Science Data Usability Rahul Ramachandran, Helen Conover, Sunil Movva and Sara Graves Information Technology and Systems Center University of Alabama

More information

Geospatial Access and Data Display Adds Value to Data Management at the Biological and Chemical Oceanographic Data Management Office

Geospatial Access and Data Display Adds Value to Data Management at the Biological and Chemical Oceanographic Data Management Office Geospatial Access and Data Display Adds Value to Data Management at the Biological and Chemical Oceanographic Data Management Office M. Dickson Allison 1 and Charlton Galvarino 2 1 Woods Hole Oceanographic

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. 20 November 2017 (12:10 GMT) Beginner.

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. 20 November 2017 (12:10 GMT) Beginner. Training for Database & Technology with Modeling in SAP HANA Courses Listed Beginner HA100 - SAP HANA Introduction Advanced HA300 - SAP HANA Certification Exam C_HANAIMP_13 - SAP Certified Application

More information

LONG-TERM SITE WIND DATA REPORT. Thompson Island

LONG-TERM SITE WIND DATA REPORT. Thompson Island LONG-TERM SITE WIND DATA REPORT Thompson Island January 1, 2005 December 31, 2005 Prepared for Massachusetts Technology Collaborative 75 North Drive Westborough, MA 01581 By Christopher N. Elkinton Anthony

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

Imputation for missing observation through Artificial Intelligence. A Heuristic & Machine Learning approach

Imputation for missing observation through Artificial Intelligence. A Heuristic & Machine Learning approach Imputation for missing observation through Artificial Intelligence A Heuristic & Machine Learning approach (Test case with macroeconomic time series from the BIS Data Bank) Byeungchun Kwon Bank for International

More information

Energy Engineering: Tools and Trends

Energy Engineering: Tools and Trends Energy Engineering: Tools and Trends AEE Northeast Ohio Chapter Meeting March 27, 2008 1 Introduction Background and Experience Energy Engineer for Trane 20 years in HVAC Industry Equipment design and

More information

DAS LRS Monthly Service Report

DAS LRS Monthly Service Report DAS LRS Monthly Service Report Customer Service Manager : Diploma Aggregation Service : Daniel Ward Project/document reference : DAS LRS 2010-12 Issue : 1.0 Issue date : 17 th January 2011 Reporting Period

More information

PRELIMINARY INTERFACE REQUIREMENTS AGREEMENT

PRELIMINARY INTERFACE REQUIREMENTS AGREEMENT PRELIMINARY INTERFACE REQUIREMENTS AGREEMENT November 2007 DRAFT v2.3 Consortium for Ocean Leadership 1201 New York Avenue NW, Fourth Floor, Washington, D.C. 20005 www.joiscience.org Table of Contents

More information

Multi-sensors vicarious calibration activities at CNES

Multi-sensors vicarious calibration activities at CNES Multi-sensors vicarious calibration activities at CNES Patrice Henry, Bertrand Fougnie June 11, 2013 CNES background in image quality monitoring of operational Earth observation systems Since the launch

More information

New Datasets, Functionality and Future Development. Ashwanth Srinivasan, (FSU) Steve Hankin (NOAA/PMEL) Major contributors: Jon Callahan (Mazama(

New Datasets, Functionality and Future Development. Ashwanth Srinivasan, (FSU) Steve Hankin (NOAA/PMEL) Major contributors: Jon Callahan (Mazama( HYCOM Data Service New Datasets, Functionality and Future Development Ashwanth Srinivasan, (FSU) Steve Hankin (NOAA/PMEL) Major contributors: Jon Callahan (Mazama( Consulting) Roland Schweitzer (Weathertop

More information

How to get to information without drilling down through a gazillion layers or being a GIS power user

How to get to information without drilling down through a gazillion layers or being a GIS power user One Stop Shopping How to get to information without drilling down through a gazillion layers or being a GIS power user Our Mission Managing fish and wildlife resources for their long-term well-being and

More information

Global Earth Observation System of Systems. GEO Secretariat Geneva, Switzerland

Global Earth Observation System of Systems. GEO Secretariat Geneva, Switzerland Global Earth Observation System of Systems GEO Secretariat Geneva, Switzerland Group on Earth Observations Intergovernmental Organization with 81 Members and 58 Participating Organizations (including WMO)

More information

A COASTAL WATER QUALITY METADATA DATABASE FOR THE SOUTHEAST U.S.A.

A COASTAL WATER QUALITY METADATA DATABASE FOR THE SOUTHEAST U.S.A. A COASTAL WATER QUALITY METADATA DATABASE FOR THE SOUTHEAST U.S.A. Wade M. Sheldon, Christine Laporte, Travis Douce, and Merryl Alber 4 AUTHORS: Department of Marine Sciences, University of Georgia, Athens,

More information

Aon Hewitt. Facts & Figures. March 2016 Update. Risk. Reinsurance. Human Resources. Empower Results

Aon Hewitt. Facts & Figures. March 2016 Update. Risk. Reinsurance. Human Resources. Empower Results Aon Hewitt Facts & Figures Risk. Reinsurance. Human Resources. Empower Results Facts & Figures Contents In this document... This button normally prints the whole document. If you want to print just the

More information

29 February Morris Brill Fritz VanWijngaarden

29 February Morris Brill Fritz VanWijngaarden 29 February 2012 Morris Brill Fritz VanWijngaarden Acknowledgements Gary Fox, Northrop Grumman Ron Lowther, Ph.D., Chief, Information Systems Branch, Global Systems Division, NOAA. (formerly Northrop Grumman)

More information

WaveNet: A Web-Based Metocean Data Access, Processing, and Analysis Tool; Part 3 CDIP Database

WaveNet: A Web-Based Metocean Data Access, Processing, and Analysis Tool; Part 3 CDIP Database WaveNet: A Web-Based Metocean Data Access, Processing, and Analysis Tool; Part 3 CDIP Database by Zeki Demirbilek, Lihwa Lin, and Derek Wilson PURPOSE: This Coastal and Hydraulics Engineering Technical

More information

Report to Plenary on item 3.1

Report to Plenary on item 3.1 World Meteorological Organization Cg-XVI/PINK 3.1(1) SIXTEENTH CONGRESS GENEVA, 2011 Submitted by: Chair, Committee C Date: 27.V.2011 Original Language: English Agenda item: 3.1 WORLD WEATHER WATCH PROGRAMME

More information

ASRC Federal Mission Solutions LRDR Overview 08 March, 2017

ASRC Federal Mission Solutions LRDR Overview 08 March, 2017 ASRC Federal Mission Solutions LRDR Overview 08 March, 2017 1 ASRC Federal Mission Solutions Proprietary Long Range Discrimination Radar ASRC Federal Mission Solutions (AFMS) is proud to be part of the

More information

SME License Order Working Group Update - Webinar #3 Call in number:

SME License Order Working Group Update - Webinar #3 Call in number: SME License Order Working Group Update - Webinar #3 Call in number: Canada Local: +1-416-915-8942 Canada Toll Free: +1-855-244-8680 Event Number: 662 298 966 Attendee ID: check your WebEx session under

More information