EXTRACTION AND VISUALIZATION OF WIND SPEED IN A GIS ENVIRONMENT FROM A WEATHER RESEARCH AND FORECASTING (WRF) OUTPUT USING PYTHON

Size: px
Start display at page:

Download "EXTRACTION AND VISUALIZATION OF WIND SPEED IN A GIS ENVIRONMENT FROM A WEATHER RESEARCH AND FORECASTING (WRF) OUTPUT USING PYTHON"

Transcription

1 EXTRACTION AND VISUALIZATION OF WIND SPEED IN A GIS ENVIRONMENT FROM A WEATHER RESEARCH AND FORECASTING (WRF) OUTPUT USING PYTHON Jerome T. Tolentino 1, Ma. Victoria Rejuso 1, Jara Kaye Villanueva 1, Loureal Camille Inocencio 1 and Ma. Rosario Concepcion Ang 1 1 Phil-LiDAR 2 REMap: Philippine Renewable Energy Resource Mapping from LiDAR Surveys and UP Training Center for Applied Geodesy and Photogrammetry (UP TCAGP), University of the Philippines, Diliman, Quezon City, 1101, Metro Manila, Philippines, tolentinojeromet@gmail.com KEY WORDS:WRF, GrADS, netcdf, Python, GIS ABSTRACT: Wind is one of the rapidly developing sources of renewable energy in the Philippines. However, determining wind speed and wind pattern poses a tough challenge to developers and researchers. The Weather Research and Forecasting (WRF) model is an open source Numerical Weather Prediction (NWP) system used for determining meteorological data like wind speed in a specific area. The default format of each WRF output is in netcdf which can be viewed in a GIS environment. Even though GIS can handle large files, it will take long processing time. An alternative is to convert the netcdf file into a format that is readable by the Grid Analysis and Display System (GrADS), which is an open source post-processing tool used to access, manipulate and visualize earth science data. However, creating a script for GrADS is very complex. Thus, this study developed a Pythonbased GUI software for extraction of wind speed using the PyGrADS library, a Python interface for GrADS. After extraction, these can be interpolated in a GIS environment to produce a raster file. The extracted and averaged wind speed data are from 2008 (La Niña), 2010 (El Niño) and 2014 of Quezon City WRF output with a domain of 1km by 1km resolution. Given the amount and number of data points, using python script in extracting and averaging wind speed is faster than doing it manually. A GIS environment can now project the extracted output because it has a smaller file compared to the raw netcdf file. It was also able to show that the output visualized in the GIS environment has a similar trend with the output of the previous NREL study. It can be concluded that this study has shown that extracting and averaging wind speed using Python is more flexible than other post-processing softwares. 1. INTRODUCTION 1.1 Background of the Study In past centuries, Archimedes stated that an object immersed in a fluid, wholly or partially, has a buoyant force equal to the weight of the displaced fluid by the object, which was eventually called the Archimedes principle. Furthermore, it became the fundamental of fluid mechanics. Fluid is a substance that deforms with minimal applied shear stress. Nowadays, application of fluids, particularly on wind, can convert its natural energy to other types of energy like mechanical and electrical. Wind is one of the rapidly developing sources of renewable energy in the Philippines. Since wind is classified as fluid, any obstacle can alter its path. Utilization of this resource for electrification requires intensive study of the wind regime in a given locality. Wind is highly variable; thus, it poses a tough challenge to developers and researchers because an accurate model is needed to extract and visualize the wind speed and wind pattern. Numerical Weather Prediction (NWP) is one method to determine a wind potential map in a given domain. NWP uses numerical representation of the atmosphere to forecast future weather behavior based on current weather measurements. Some components of the atmosphere which NWP numerically represent are Newton s Laws, Conservation of mass, energy, and ideal gas law. However, these components are insufficient to characterize the atmosphere because it does not include small physical processes. To improve manipulation of atmosphere, parameterization is used in the model which represents an important physical process that cannot be directly included in the model. It shows adding parameterization schemes in NWP improves weather forecasting. 1.2 Significance of the Study In 2014, National Renewable Energy Laboratory (NREL) made a 1-kilometer resolution wind resource assessment on the Philippines using Weather Research and Forecasting model version 3.5 (WRF 3.5). The output of WRF is in netcdf format which contains different scientific data in an array. This format only allows the visualization of the wind pattern through Panoply netcdf viewer, but extraction of values to output variables were not applicable. In addition, a netcdf file can be viewed in a GIS environment. However, the tool used to open such format cannot handle large (~10 Gigabytes) netcdf files containing the necessary period of data and domain required for wind

2 resource study. Even though the GIS can handle large files, it will take long processing time. An alternative is to convert the netcdf file into a format readable by the Grid Analysis and Display System (GrADS). However, creating a script for GrADS is very complex. Thus, this study explored the use of Python language for extracting and averaging output values such as wind speed. This allows the extracted values to be saved in an Excel format (.xlsx). Moreover, the Python script creates a GUI version for easier interaction with the user. After extracting wind speed values, these can be interpolated in a GIS environment to produce a raster file Objective This study aims to extract wind speed from WRF netcdf output using Python-based GUI software. Conversion, extraction and visualization are three main parts of the study. ARWpost program will be used in conversion part while for extraction, a developed Python-based GUI software will be implemented. Lastly, a GIS environment will be used for visualization. Specifically, the objectives of the study are: 1. To convert netcdf file to GrADS file 2. To extract wind speed from WRF output 3. To determine the reliability of the converted file 4. To develop GUI software 5. To visualize the extracted wind speed in a GIS environment 1.4. Scope and Limitation The study focuses on extraction of wind speed from netcdf file using Python. As input file for the software, GrADS file (ctl and dat) was used. The extracted and averaged wind speed data are from 2008 (La Niña), 2010 (El Niño) and 2014 of Quezon City WRF output with a domain of 1km by 1km resolution. Its output in multi-point extraction type was averaged every month. All the conversion and extraction was done in Ubuntu platform. 2. RRL 2.1. Grid Analysis and Display System (GrADS) The Grid Analysis and Display System (GrADS) is an open source post-processing tool used to access, manipulate and visualize earth science data which is used worldwide. It is composed of two data models in managing gridded and station data. The data file formats that GrADS supports are as follows: binary (stream or sequential), GRIB (version 1 and 2), NetCDF, HDF (version 4 and 5), and BUFR (for station data) (Doty, 1995). GrADS handles a 5-Dimensonal data environment: longitude, latitude, vertical level, time and an optional dimension that is used for ensembles (Doty, 1995). Data descriptor file is used to arrange the data sets in the 5-D space. The data can be displayed in graphs like line, bar, scatter plot and contour plots which can be saved as image file. Also, GrADS has a programmable interface for advanced analysis and display. In addition, GrADS can extract certain files and write it to a text file (Doty, 1995). The sample script is shown in Figure 1. The default format of GrADS is in.ctl and.dat file. ARWpost can convert meteorological outputs such as WRF output to a file readable by the GrADS. Also, GrADS is the easiest post processing tool for WRF model.

3 2.2 Python in Earth Sciences Figure 1. Sample script using GrADS language (Da Silva, 2008b) Python is an object-oriented open source programming language. Being object-oriented, its command is more understandable by the user and its syntax is more compact than other programming language (i.e. Java or C++). Nowadays, Python is widely used by researchers and software engineers. In addition, developers created several packages which helps the users solve their problem particularly in sciences. For example, Python was used in atmospheric science for its ability to handle arrays (Lin, 2012). Despite its flexibility, Python code is relatively slower than compiled code and its scientific modules are limited compared to Fortran language. Pyhton may have disadvantages but for science applications those weaknesses are diminished. Earth sciences community adopts python environment that leads to handling file formats like netcdf, HDF4 and GRIB 1 and 2. Furthermore, python can behave as a scripting language for scientific application such as OpenGrADS (Python interface GrADS) and ArcGIS (Lin, 2012). PyGrADS is a Python interface of GrADS that makes scripting easier. One advantage is that for a user who knows Python would not need to learn a new scripting language. Moreover, the user can take advantage of the unique capabilities of Python like data storage in MySQL database and creation of graphical user interface. Still, it allows the usage of GrADS scripting language (OpenGrADS, 2014). Sample script is shown in Figure 2 wherein it only takes a few lines to extract one variable to the input file compared to GrADS script. Figure 2. Sample script using Python language (PyGrADS) (Da Silva, 2008a)

4 2.3 Application of Python in netcdf and GIS software Tropical Marine Science Institute (TMSI) generated compressed large (~700 Megabytes) netcdf data daily including hydrodynamic models. The file contains 4D (x, y, z and time) values. A netcdf file can only be handled by special software programs for extraction and visualization of datasets. Rainer s (n.d.) study was to create a hydrodynamics visualization framework which will be used by TMSI researchers. To obtain its objective, a Python environment was used to extract and read netcdf data, and then, converted it to a shapefile because it has a compatibility with a GIS software. The Python code consists of netcdf data handling, array operations, shapefile conversion and a GUI module. After extracting and converting netcdf files, the created shapefiles developed by Rainer (n.d.) was used in ArcGIS ModelBuilder script to develop necessary visualization results. Under the ArcGIS ModelBuilder script, ArcPy (ArcGIS Python module) was used as the main library. Lastly, the hydrodynamic map will be animated with tidal currents per certain time. The workflow of Hydrodynamics Visualization Framework is shown in Figure 3. Figure 3. Hydrodynamics Visualization Framework workflow Zhao, Bryan, King, Song & Yu (2012) determined the improvement of efficiency of spatial analysis for model data assembly using high performance computing techniques. An algorithm was made to define a summary statistics for a climate data set with a long time-series. It sets as input for crop simulation model. The programming language used in the algorithm is Python with netcdf4, GDAL and PIL. In addition, they used parallel processing in the algorithm to have faster computation. As a result, the created algorithm takes only one second to calculate one climate data. Comparing to the use of GIS processing with 180 second per climate data, the created algorithm is much faster. 3. METHODOLOGY The study has three main parts: conversion, extraction and visualization. ARWpost was used to convert the WRF output into GrADS file. Then, data values were extracted in GrADS file and eventually stored into an Excel file. Lastly, GIS environment was used in visualizing output. A 3-year 1 km resolution Quezon City WRF output was used in the study. The dates were 2008 (La Niña), 2010 (El Niño) and The flowchart is shown below.

5 Figure 4. Wind Speed Extraction workflow 3.1 ARWpost ARWpost is a program made in Fortran language that converts WRF input and output files to a GrADS output files. Since the default format of WRF output is in netcdf, it will not affect the study. The converted GrADS file was configured thus, each output file has an hourly data every month. The reason is that the WRF output (netcdf) file has output every 30 days. 3.2 Extraction Type Single Point and Multi-Point are two types of extraction types. Single point type extracts the values per iteration in a given point (latitude and longitude). The values that can be extracted are x-wind speed, y-wind speed, wind direction (degrees), wind speed and wind direction at 10 m height and time. The wind direction is determined using the table below. Cardinal Direction Degree Direction N NNE NE ENE E ESE SE SSE S SSW SW WSW

6 W WNW NW NNW Table 1. Wind Direction Chart Multi point type extracts values in all points in a domain and average all the output in a file. As mentioned earlier, the converted GrADS file was in terms of hourly output every month. Thus, the multi-point type output is averaged every month. For wind speed, 20 and 40 meters was calculated using the wind speed profile equation. V 2 = V 1 ( Z 2 Z1 ) (1) Where V 2 is wind speed at height Z 2 (in meters), V 1 is known wind speed at height Z 1 (in meters) and exponent α is the power-law exponent. 3.3 Graphical User Interface Tkinter library in Python was used in creating the GUI software named Wind Extraction Software. The main window of the GUI shows Save Path, Directory Path, Extraction Type and Data to Extract. In Directory Path, the user can choose a file directory to which the converted GrADS file will be stored. The software has two types of extraction type: Single Point and Multi Point. If the user chooses the Single Point, input for latitude and longitude will be enabled, but will be disabled if Multi-Point is chosen. For description of the software, the user can press the About button. Figure 5. Wind Extraction Software Main Window The GUI was programmed such that the user must fill out all the necessary lines first before the extraction. It will give an error message to indicate the step that the user is missing. If the user s latitude and longitude input was invalid, it will display the range of the latitude and longitude available in a given file. Sample error message box is was shown in Figure 6.

7 Figure 6. Error message box for invalid input of longitude/latitude After filling up the needed inputs, the wind speed buttons can be clicked to extract the files with its corresponding value. The extracted data is stored in an Excel file using the xlsxwriter library. 4. RESULTS AND DISCUSSION Using python script, the average time of extraction and storage of data was 7.5 seconds per month. In GIS environment, it took around 3 minutes but still its output is not in average. This shows that using the python script in extracting and averaging wind speed is faster than doing it in GIS environment. One reason for efficiency of the script is that the software is more lightweight compared to a GIS environment. A GIS environment can now project the extracted output easily because it has a smaller file (Kilobytes) compared to the raw netcdf file (Gigabytes). A sample wind extraction output for single point and multi-point type were shown in Figure 7. Figure 7. Sample wind extraction output for single point (above) and multi-point (below) type To determine the reliability of the output, WRF output was viewed in Panoply netcdf viewer. Then, the extracted wind speed in GrADS file was interpolated using GIS software. As observed in Figure 8, no changes involved in converting netcdf file into GrADS file. Basically, the domain was not exactly Quezon City but rather domain containing Quezon City.

8 Figure 8. Projected extracted wind speed (left) vs. Projected netcdf file (right) To further analyze the extracted data, an annual mean wind speed domain was made. As shown in Figure 9, the annual mean wind speed resource map for Quezon City from 2008, 2010 and 2014 have similar trend to the output of the previous NREL study. Figure 9. a.) Quezon City 2008 domain, b.) Quezon City 2010 domain, c.) Quezon City 2014 domain and d.) Annual Quezon City domain by NREL

9 5. CONCLUSION NetCDF file was converted to GrADS file without altering its data. Then, Wind Extraction Software was developed using Python which can extract wind speed with 2 different output from GrADS file successfully. The single point extracted output is applicable for validation of simulated data to the observed data; whereas, the multi-point extracted output is applicable for wind resource assessment which determines the places that have high wind potential. High wind potential is one key for developing a wind farm. Since the output is in Excel file, manipulating present data is easier and flexible. For example, wind power density can be calculated from wind speed. The developed software has faster extraction than the GIS environment software. It can be concluded that this study has shown that extracting and averaging wind speed using Python is more flexible than other post-processing softwares. 6. ACKNOWLEDGEMENT The study was under full consultation with Dr. Gerry Bagtasa of Institue of Environmental Science and Meteorology, University of the Philippines-Diliman. This research is also part of the Phil-LiDAR 2 Program under the Department of Science and Technology. REFERENCE Da Silva A., 2008a. Using PyGrADS to save variable data to a text file, Retrieved July 1, 2015, fromhttp://cookbooks.opengrads.org/index.php?title=recipe- 003:_Using_PyGrADS_to_save_variable_data_to_a_text_file Da Silva A., 2008b. Saving GrADS Variable data to a text file, Retrieved July 1, 2015, from Doty, B., The grid analysis and display system. GRADS Manual, 10, 148. Lin, J. W. B., Why python is the next wave in earth sciences computing.bulletin of the American Meteorological Society, 93(12), McNamara J., Creating Excel files with Python and XlsxWriter, Retrieved July 1, 2015 from OpenGrADS, Python Interface to GrADS, Retreived July 1, 2015, from ython Rainer, M. Multidimensional Marine Environmental Data Conversion and Visualization Using Python and GIS. Shipman, J. W., Tkinter reference: a GUI for Python. Technical report, New Mexico Tech Computer Center. Wang, W., Bruyere, C., Duda, M., Dudhia, J., Gill, D., Lin, H. C.,...& Mandel, J. (2015). ARW version 3 modeling system user s guide. Mesoscale&Miscroscale Meteorology Division. National Center for Atmospheric Research (January 2015), Zhao, G., Bryan, B. A., King, D., Song, X., & Yu, Q., Parallelization and optimization of spatial analysis for large scale environmental model data assembly. Computers and electronics in agriculture, 89,

Transactions on Information and Communications Technologies vol 18, 1998 WIT Press, ISSN

Transactions on Information and Communications Technologies vol 18, 1998 WIT Press,   ISSN STREAM, spatial tools for river basins, environment and analysis of management options Menno Schepel Resource Analysis, Zuiderstraat 110, 2611 SJDelft, the Netherlands; e-mail: menno.schepel@resource.nl

More information

Climpact2 and PRECIS

Climpact2 and PRECIS Climpact2 and PRECIS WMO Workshop on Enhancing Climate Indices for Sector-specific Applications in the South Asia region Indian Institute of Tropical Meteorology Pune, India, 3-7 October 2016 David Hein-Griggs

More information

Speedwell Weather System. SWS Version 11 What s New?

Speedwell Weather System. SWS Version 11 What s New? Speedwell Weather System The Open Weather Derivative Pricing and Risk Management System SWS Version 11 What s New? SWS Version 11 has been released. We are pleased to announce the following important new

More information

Among various open-source GIS programs, QGIS can be the best suitable option which can be used across partners for reasons outlined below.

Among various open-source GIS programs, QGIS can be the best suitable option which can be used across partners for reasons outlined below. Comparison of Geographic Information Systems (GIS) software As of January 2018, WHO has reached an agreement with ESRI (an international supplier of GIS software) for an unlimited use of ArcGIS Desktop

More information

WRF Modeling System Overview

WRF Modeling System Overview WRF Modeling System Overview Wei Wang & Jimy Dudhia Nansha, Guangdong, China December 2015 What is WRF? WRF: Weather Research and Forecasting Model Used for both research and operational forecasting It

More information

Integrated Electricity Demand and Price Forecasting

Integrated Electricity Demand and Price Forecasting Integrated Electricity Demand and Price Forecasting Create and Evaluate Forecasting Models The many interrelated factors which influence demand for electricity cannot be directly modeled by closed-form

More information

Using the EartH2Observe data portal to analyse drought indicators. Lesson 4: Using Python Notebook to access and process data

Using the EartH2Observe data portal to analyse drought indicators. Lesson 4: Using Python Notebook to access and process data Using the EartH2Observe data portal to analyse drought indicators Lesson 4: Using Python Notebook to access and process data Preface In this fourth lesson you will again work with the Water Cycle Integrator

More information

Data Format and Visualization Agenda

Data Format and Visualization Agenda Data Format and Visualization Agenda- 7.2.2 ET-SUP-8 (14.04.2014) Suman Goyal, Satellite Meteorology Division, India Meteorological Department, Suman_goyal61@yahoo.co.in Visualization Methods The satellite

More information

WRF Modeling System Overview

WRF Modeling System Overview WRF Modeling System Overview Jimy Dudhia What is WRF? WRF: Weather Research and Forecasting Model Used for both research and operational forecasting It is a supported community model, i.e. a free and shared

More information

Purdue University Meteorological Tool (PUMET)

Purdue University Meteorological Tool (PUMET) Purdue University Meteorological Tool (PUMET) Date: 10/25/2017 Purdue University Meteorological Tool (PUMET) allows users to download and visualize a variety of global meteorological databases, such as

More information

SOFTWARE USER MANUAL. Weather Capture Advance WS1640 WM9280

SOFTWARE USER MANUAL. Weather Capture Advance WS1640 WM9280 SOFTWARE USER MANUAL Weather Capture Advance WS1640 WM9280 1 TABLE OF CONTENTS 1. Introduction 3 1.1 System requirements 1.2 Connection of the weather station 1.3 Installation of the Weather Capture Advance

More information

Using Satellite Data for Improving PM10 Model Outputs

Using Satellite Data for Improving PM10 Model Outputs Using Satellite Data for Improving PM10 Model Outputs A Test Case Over Chiang Mai City by Dr. rer. nat. Ronald Macatangay (ronmcdo@gmail.com) National Astronomical Research Institute of Thailand, Chiang

More information

AN INTERNATIONAL SOLAR IRRADIANCE DATA INGEST SYSTEM FOR FORECASTING SOLAR POWER AND AGRICULTURAL CROP YIELDS

AN INTERNATIONAL SOLAR IRRADIANCE DATA INGEST SYSTEM FOR FORECASTING SOLAR POWER AND AGRICULTURAL CROP YIELDS AN INTERNATIONAL SOLAR IRRADIANCE DATA INGEST SYSTEM FOR FORECASTING SOLAR POWER AND AGRICULTURAL CROP YIELDS James Hall JHTech PO Box 877 Divide, CO 80814 Email: jameshall@jhtech.com Jeffrey Hall JHTech

More information

Display and analysis of weather data from NCDC using ArcGIS

Display and analysis of weather data from NCDC using ArcGIS Display and analysis of weather data from NCDC using ArcGIS Helen M. Cox Associate Professor Geography Department California State University, Northridge and Stephen Krug Graduate Student Geography Department

More information

Gridded Ambient Air Pollutant Concentrations for Southern California, User Notes authored by Beau MacDonald, 11/28/2017

Gridded Ambient Air Pollutant Concentrations for Southern California, User Notes authored by Beau MacDonald, 11/28/2017 Gridded Ambient Air Pollutant Concentrations for Southern California, 1995-2014 User Notes authored by Beau, 11/28/2017 METADATA: Each raster file contains data for one pollutant (NO2, O3, PM2.5, and PM10)

More information

Using netcdf and HDF in ArcGIS. Nawajish Noman Dan Zimble Kevin Sigwart

Using netcdf and HDF in ArcGIS. Nawajish Noman Dan Zimble Kevin Sigwart Using netcdf and HDF in ArcGIS Nawajish Noman Dan Zimble Kevin Sigwart Outline NetCDF and HDF in ArcGIS Visualization and Analysis Sharing Customization using Python Demo Future Directions Scientific Data

More information

István Ihász, Hungarian Meteorological Service, Budapest, Hungary

István Ihász, Hungarian Meteorological Service, Budapest, Hungary Experiences using VarEPS products at the Hungarian Meteorological Service István Ihász, Hungarian Meteorological Service, Budapest, Hungary 1 Introduction ECMWF 15 day Variable Resolution Ensemble Prediction

More information

Analyzing the Earth Using Remote Sensing

Analyzing the Earth Using Remote Sensing Analyzing the Earth Using Remote Sensing Instructors: Dr. Brian Vant- Hull: Steinman 185, 212-650- 8514 brianvh@ce.ccny.cuny.edu Ms. Hannah Aizenman: NAC 7/311, 212-650- 6295 haizenman@ccny.cuny.edu Dr.

More information

Solar Radiation and Solar Programs. Training Consulting Engineering Publications GSES P/L

Solar Radiation and Solar Programs. Training Consulting Engineering Publications GSES P/L Solar Radiation and Solar Programs Training Consulting Engineering Publications SOLAR RADIATION Purposes of Solar Radiation Software Successful project planning and solar plant implementation starts by

More information

SWAT WEATHER DATABASE TOOL

SWAT WEATHER DATABASE TOOL A SUPPORT SYSTEM FOR THE LONG-TERM ANALYSIS OF CLIMATE SCENARIOS WITH SWAT Arthur H. Essenfelder Centro Euro-Mediterraneo sui Cambiamenti Climatici CMCC 2017 INTERNATIONAL SWAT CONFERENCE 28 30 JUNE 2017,

More information

WRF Modeling System Overview

WRF Modeling System Overview WRF Modeling System Overview Jimy Dudhia What is WRF? WRF: Weather Research and Forecasting Model Used for both research and operational forecasting It is a supported community model, i.e. a free and shared

More information

WRF Modeling System Overview

WRF Modeling System Overview WRF Modeling System Overview Louisa Nance National Center for Atmospheric Research (NCAR) Developmental Testbed Center (DTC) 27 February 2007 1 Outline What is WRF? WRF Modeling System WRF Software Design

More information

SOFTWARE FOR WEATHER DATABASES MANAGEMENT AND CONSTRUCTION OF REFERENCE YEARS

SOFTWARE FOR WEATHER DATABASES MANAGEMENT AND CONSTRUCTION OF REFERENCE YEARS SOFTWARE FOR WEATHER DATABASES MANAGEMENT AND CONSTRUCTION OF REFERENCE YEARS Marco Beccali 1, Ilaria Bertini 2, Giuseppina Ciulla 1, Biagio Di Pietra 2, and Valerio Lo Brano 1 1 Department of Energy,

More information

Studying Topography, Orographic Rainfall, and Ecosystems (STORE)

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

More information

Speedwell High Resolution WRF Forecasts. Application

Speedwell High Resolution WRF Forecasts. Application Speedwell High Resolution WRF Forecasts Speedwell weather are providers of high quality weather data and forecasts for many markets. Historically we have provided forecasts which use a statistical bias

More information

Evaluating Corridors. Jeff Jenness Dan Majka Paul Beier. CorridorDesigner Workshop Fall 2007

Evaluating Corridors. Jeff Jenness Dan Majka Paul Beier. CorridorDesigner Workshop Fall 2007 Evaluating Corridors Jeff Jenness Dan Majka Paul Beier CorridorDesigner Workshop Fall 2007 1 1 Evaluating Corridors Test Alternative Corridors Least cost methods always provide a best solution, even when

More information

WRF Modeling System Overview

WRF Modeling System Overview WRF Modeling System Overview Jimy Dudhia What is WRF? WRF: Weather Research and Forecasting Model Used for both research and operational forecasting It is a supported community model, i.e. a free and shared

More information

Urban Canopy Tool User Guide `bo`

Urban Canopy Tool User Guide `bo` Urban Canopy Tool User Guide `bo` ADMS Urban Canopy Tool User Guide Version 2.0 June 2014 Cambridge Environmental Research Consultants Ltd. 3, King s Parade Cambridge CB2 1SJ UK Telephone: +44 (0)1223

More information

QGIS FLO-2D Integration

QGIS FLO-2D Integration EPiC Series in Engineering Volume 3, 2018, Pages 1575 1583 Engineering HIC 2018. 13th International Conference on Hydroinformatics Karen O Brien, BSc. 1, Noemi Gonzalez-Ramirez, Ph. D. 1 and Fernando Nardi,

More information

Measuring earthquake-generated surface offsets from high-resolution digital topography

Measuring earthquake-generated surface offsets from high-resolution digital topography Measuring earthquake-generated surface offsets from high-resolution digital topography July 19, 2011 David E. Haddad david.e.haddad@asu.edu Active Tectonics, Quantitative Structural Geology, and Geomorphology

More information

Land-Use Land-Cover Change Detector

Land-Use Land-Cover Change Detector 15 th Esri India User Conference 2014 Land-Use Land-Cover Change Detector Rushikesh Padsala Email ID:- rushikesh101@gmail.com Student, III Semester, M.Tech Geomatics, Faculty of Technology, CEPT University

More information

4. GIS Implementation of the TxDOT Hydrology Extensions

4. GIS Implementation of the TxDOT Hydrology Extensions 4. GIS Implementation of the TxDOT Hydrology Extensions A Geographic Information System (GIS) is a computer-assisted system for the capture, storage, retrieval, analysis and display of spatial data. It

More information

APPENDIX G-7 METEROLOGICAL DATA

APPENDIX G-7 METEROLOGICAL DATA APPENDIX G-7 METEROLOGICAL DATA METEOROLOGICAL DATA FOR AIR AND NOISE SAMPLING DAYS AT MMR Monthly Normals and Extremes for Honolulu International Airport Table G7-1 MMR RAWS Station Hourly Data Tables

More information

Learning ArcGIS: Introduction to ArcCatalog 10.1

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

More information

Diana: A Free Meteorological Workstation. Lisbeth Bergholt and Helen Korsmo

Diana: A Free Meteorological Workstation. Lisbeth Bergholt and Helen Korsmo Diana: A Free Meteorological Workstation Lisbeth Bergholt and Helen Korsmo Audun Christoffersen Helen Korsmo Lisbeth Bergholt Anstein Foss Juergen Schulze We are a team of 5 people working with product

More information

Finnish Open Data Portal for Meteorological Data

Finnish Open Data Portal for Meteorological Data 18.11.2013 1 Finnish Open Data Portal for Meteorological Data 14th Workshop on meteorological operational systems Roope Tervo Finnish Meteorological Institute Example of Data Sets -- Observations Data

More information

User Manual Software IT-Precipitation

User Manual Software IT-Precipitation CAPRAIT- 1 Precipitation IT-Precipitation Precipitation data analyzer V1.0.0 AUTHOR (S): Natalia León Laura López Juan Velandia PUBLICATION DATE: 24/05/2018 VERSION: 1.0.0 Copyright Copyright 2018 UNIVERSIDAD

More information

Forecast Predictions of Winds, Waves and Storm Surge during Hurricane Arthur (2014)

Forecast Predictions of Winds, Waves and Storm Surge during Hurricane Arthur (2014) Forecast Predictions of Winds, Waves and Storm Surge during Hurricane Arthur (2014) R Cyriac 1, JC Dietrich 1, JG Fleming 2, BO Blanton 3, RA Luettich Jr 4, C Kaiser 5 1 Dept. of Civil, Construction, and

More information

Leveraging Your Geo-spatial Data Investments with Quantum GIS: an Open Source Geographic Information System

Leveraging Your Geo-spatial Data Investments with Quantum GIS: an Open Source Geographic Information System Leveraging Your Geo-spatial Data Investments with Quantum GIS: an Open Source Geographic Information System Donald L. Schrupp Colorado Division of Wildlife (Retired) Danny Lewis Texas Parks and Wildlife

More information

AMPS Update June 2016

AMPS Update June 2016 AMPS Update June 2016 Kevin W. Manning Jordan G. Powers Mesoscale and Microscale Meteorology Laboratory National Center for Atmospheric Research Boulder, CO 11 th Antarctic Meteorological Observation,

More information

Fig. F-1-1. Data finder on Gfdnavi. Left panel shows data tree. Right panel shows items in the selected folder. After Otsuka and Yoden (2010).

Fig. F-1-1. Data finder on Gfdnavi. Left panel shows data tree. Right panel shows items in the selected folder. After Otsuka and Yoden (2010). F. Decision support system F-1. Experimental development of a decision support system for prevention and mitigation of meteorological disasters based on ensemble NWP Data 1 F-1-1. Introduction Ensemble

More information

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

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

More information

Importance of Numerical Weather Prediction in Variable Renewable Energy Forecast

Importance of Numerical Weather Prediction in Variable Renewable Energy Forecast Importance of Numerical Weather Prediction in Variable Renewable Energy Forecast Dr. Abhijit Basu (Integrated Research & Action for Development) Arideep Halder (Thinkthrough Consulting Pvt. Ltd.) September

More information

Python Raster Analysis. Kevin M. Johnston Nawajish Noman

Python Raster Analysis. Kevin M. Johnston Nawajish Noman Python Raster Analysis Kevin M. Johnston Nawajish Noman Outline Managing rasters and performing analysis with Map Algebra How to access the analysis capability - Demonstration Complex expressions and optimization

More information

William H. Bauman III * NASA Applied Meteorology Unit / ENSCO, Inc. / Cape Canaveral Air Force Station, Florida

William H. Bauman III * NASA Applied Meteorology Unit / ENSCO, Inc. / Cape Canaveral Air Force Station, Florida 12.5 INTEGRATING WIND PROFILING RADARS AND RADIOSONDE OBSERVATIONS WITH MODEL POINT DATA TO DEVELOP A DECISION SUPPORT TOOL TO ASSESS UPPER-LEVEL WINDS FOR SPACE LAUNCH William H. Bauman III * NASA Applied

More information

LOCAL CLIMATOLOGICAL DATA Monthly Summary July 2013

LOCAL CLIMATOLOGICAL DATA Monthly Summary July 2013 Deg. Days Precip Ty Precip Wind Solar Hu- Adj. to Sea Level mid- ity Avg Res Res Peak Minute 1 fog 2 hvy fog 3 thunder 4 ice plt 5 hail 6 glaze 7 duststm 8 smk, hz 9 blw snw 1 2 3 4A 4B 5 6 7 8 9 12 14

More information

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work?

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Outline Chapter 1 Introducing ArcGIS What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Basic data formats The ArcCatalog interface 1-1 1-2 A history of products Arc/Info

More information

SuperPack North America

SuperPack North America SuperPack North America Speedwell SuperPack makes available an unprecedented range of quality historical weather data, and weather data feeds for a single annual fee. SuperPack dramatically simplifies

More information

Using the Stock Hydrology Tools in ArcGIS

Using the Stock Hydrology Tools in ArcGIS Using the Stock Hydrology Tools in ArcGIS This lab exercise contains a homework assignment, detailed at the bottom, which is due Wednesday, October 6th. Several hydrology tools are part of the basic ArcGIS

More information

Global Atmospheric Circulation Patterns Analyzing TRMM data Background Objectives: Overview of Tasks must read Turn in Step 1.

Global Atmospheric Circulation Patterns Analyzing TRMM data Background Objectives: Overview of Tasks must read Turn in Step 1. Global Atmospheric Circulation Patterns Analyzing TRMM data Eugenio Arima arima@hws.edu Hobart and William Smith Colleges Department of Environmental Studies Background: Have you ever wondered why rainforests

More information

University of Florida Department of Geography GEO 3280 Assignment 3

University of Florida Department of Geography GEO 3280 Assignment 3 G E O 3 2 8 A s s i g n m e n t # 3 Page 1 University of Florida Department of Geography GEO 328 Assignment 3 Modeling Precipitation and Elevation Solar Radiation Precipitation Evapo- Transpiration Vegetation

More information

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014 Bloomsburg University Weather Viewer Quick Start Guide Software Version 1.2 Date 4/7/2014 Program Background / Objectives: The Bloomsburg Weather Viewer is a weather visualization program that is designed

More information

Problems and Challenges

Problems and Challenges 2018 Esri Petroleum GIS Conference Problems and Challenges May 9 10, 2018 Houston, Texas George R. Brown Convention Center Disunity of drawing standards and format Large amount of work in Cartography,

More information

CS 229: Final Paper Wind Prediction: Physical model improvement through support vector regression Daniel Bejarano

CS 229: Final Paper Wind Prediction: Physical model improvement through support vector regression Daniel Bejarano CS 229: Final Paper Wind Prediction: Physical model improvement through support vector regression Daniel Bejarano (dbejarano@stanford.edu), Adriano Quiroga (aquiroga@stanford.edu) December 2013, Stanford

More information

May 2017 Weather Summary P a g e 1 Alexander, P.J. & Power, S.

May 2017 Weather Summary P a g e 1 Alexander, P.J. & Power, S. May 2017 Weather Summary P a g e 1 May 2017 Beaufort Weather Station Summary Logistics May was the first full month of operation of the MaREI weather observing system (WOS) located on the grounds of the

More information

Evaluating Physical, Chemical, and Biological Impacts from the Savannah Harbor Expansion Project Cooperative Agreement Number W912HZ

Evaluating Physical, Chemical, and Biological Impacts from the Savannah Harbor Expansion Project Cooperative Agreement Number W912HZ Evaluating Physical, Chemical, and Biological Impacts from the Savannah Harbor Expansion Project Cooperative Agreement Number W912HZ-13-2-0013 Annual Report FY 2018 Submitted by Sergio Bernardes and Marguerite

More information

Wind Resource Assessment Practical Guidance for Developing A Successful Wind Project

Wind Resource Assessment Practical Guidance for Developing A Successful Wind Project December 11, 2012 Wind Resource Assessment Practical Guidance for Developing A Successful Wind Project Michael C Brower, PhD Chief Technical Officer Presented at: What We Do AWS Truepower partners with

More information

Northrop Grumman Concept Paper

Northrop Grumman Concept Paper Northrop Grumman Concept Paper A Comprehensive Geospatial Web-based Solution for NWS Impact-based Decision Support Services Glenn Higgins April 10, 2014 Northrop Grumman Corporation Information Systems

More information

Location Latitude Longitude Durham, NH

Location Latitude Longitude Durham, NH Name: Date: Weather to Climate Investigation: Snow **These are example answers using the Durham, NH dataset. Answers from students using Boise and Little Rock datasets will differ. Guiding Questions: What

More information

Introduction. Project Summary In 2014 multiple local Otsego county agencies, Otsego County Soil and Water

Introduction. Project Summary In 2014 multiple local Otsego county agencies, Otsego County Soil and Water Introduction Project Summary In 2014 multiple local Otsego county agencies, Otsego County Soil and Water Conservation District (SWCD), the Otsego County Planning Department (OPD), and the Otsego County

More information

AMPS Update June 2017

AMPS Update June 2017 AMPS Update June 2017 Kevin W. Manning Jordan G. Powers Mesoscale and Microscale Meteorology Laboratory National Center for Atmospheric Research Boulder, CO 12th Workshop on Antarctic Meteorology and Climate

More information

LOCAL CLIMATOLOGICAL DATA Monthly Summary November 2006

LOCAL CLIMATOLOGICAL DATA Monthly Summary November 2006 Deg. Days Precip Ty Precip Wind Sun Hu- Adj. to Sea Level mid- ity Avg Res Res Peak Minute 1 fog 2 hvy fog 3 thunder 4 ice plt 5 hail 6 glaze 7 duststm 8 smk, hz 9 blw snw 1 2 3 4A 4B 5 6 7 8 9 12 14 15

More information

Integrating ARCGIS with Datamining Software to Predict Habitat for Red Sea Urchins on the Coast of British Columbia.

Integrating ARCGIS with Datamining Software to Predict Habitat for Red Sea Urchins on the Coast of British Columbia. Integrating ARCGIS with Datamining Software to Predict Habitat for Red Sea Urchins on the Coast of British Columbia. Wayne Hajas Pacific Biological Station Nanaimo, BC 1 Allison Smeaton GIS-student intern

More information

SLR Calculator: Sea Level Rise (SLR) Inundation Surface Calculator Add-in for ArcGIS Desktop & 10.4

SLR Calculator: Sea Level Rise (SLR) Inundation Surface Calculator Add-in for ArcGIS Desktop & 10.4 1 SLR Calculator: Sea Level Rise (SLR) Inundation Surface Calculator Add-in for ArcGIS Desktop 10.3.1 & 10.4 Florida Sea Level Scenario Sketch Planning Tool Version 1.6, July 2016 University of Florida

More information

Scripting Languages Fast development, extensible programs

Scripting Languages Fast development, extensible programs Scripting Languages Fast development, extensible programs Devert Alexandre School of Software Engineering of USTC November 30, 2012 Slide 1/60 Table of Contents 1 Introduction 2 Dynamic languages A Python

More information

Geographical Information Systems

Geographical Information Systems Geographical Information Systems Geographical Information Systems (GIS) is a relatively new technology that is now prominent in the ecological sciences. This tool allows users to map geographic features

More information

THE ATMOSPHERIC MODEL EVALUATION TOOL: METEOROLOGY MODULE

THE ATMOSPHERIC MODEL EVALUATION TOOL: METEOROLOGY MODULE THE ATMOSPHERIC MODEL EVALUATION TOOL: METEOROLOGY MODULE Robert C. Gilliam 1*, Wyat Appel 1 and Sharon Phillips 2 1 Atmospheric Sciences Modeling Division, National Oceanic and Atmospheric Administration,

More information

Watershed Modeling With DEMs

Watershed Modeling With DEMs Watershed Modeling With DEMs Lesson 6 6-1 Objectives Use DEMs for watershed delineation. Explain the relationship between DEMs and feature objects. Use WMS to compute geometric basin data from a delineated

More information

A description of these quick prepbufrobs_assim text files is given below.

A description of these quick prepbufrobs_assim text files is given below. The 20 th Century Reanalysis (20CR) Project Ensemble Filter data assimilation system produces ASCII text files containing the surface and sea level pressure observations used in the assimilation, essential

More information

Atmospheric circulation analysis for seasonal forecasting

Atmospheric circulation analysis for seasonal forecasting Training Seminar on Application of Seasonal Forecast GPV Data to Seasonal Forecast Products 18 21 January 2011 Tokyo, Japan Atmospheric circulation analysis for seasonal forecasting Shotaro Tanaka Climate

More information

Time Series Analysis with SAR & Optical Satellite Data

Time Series Analysis with SAR & Optical Satellite Data Time Series Analysis with SAR & Optical Satellite Data Thomas Bahr ESRI European User Conference Thursday October 2015 harris.com Motivation Changes in land surface characteristics mirror a multitude of

More information

Format of CLIGEN weather station statistics input files. for CLIGEN versions as of 6/2001 (D.C. Flanagan).

Format of CLIGEN weather station statistics input files. for CLIGEN versions as of 6/2001 (D.C. Flanagan). Format of CLIGEN weather station statistics input files for CLIGEN versions 4.1-5.1 as of 6/2001 (D.C. Flanagan). updated 12/11/2008 - Jim Frankenberger These files are also known as CLIGEN state files

More information

Analyzing Multidimensional Scientific Data in ArcGIS. Nawajish Noman Deng Ding

Analyzing Multidimensional Scientific Data in ArcGIS. Nawajish Noman Deng Ding Analyzing Multidimensional Scientific Data in ArcGIS Nawajish Noman Deng Ding Outline Part I - ArcGIS Platform - Scientific Multidimensional Data - Ingest and Data Management Part II - Data Exploration

More information

LOCAL CLIMATOLOGICAL DATA Monthly Summary September 2016

LOCAL CLIMATOLOGICAL DATA Monthly Summary September 2016 Deg. Days Precip Ty Precip Wind Solar Hu- Adj. to Sea Level mid- ity Avg Res Res Peak 2 Minute 1 fog 2 hvy fog 3 thunder 4 ice plt 5 hail 6 glaze 7 duststm 8 smk, hz 9 blw snw 1 2 3 4A 4B 5 6 7 8 9 11

More information

GRIB API A database driven decoding library

GRIB API A database driven decoding library GRIB API A database driven decoding library Enrico Fucile, Cristian Codorean Data & Services ECMWF Slide 1 Slide 1 Overview Introduction GRIB code GRIB API keys database Parameters database Slide 2 Slide

More information

What is CERA? Coastal Emergency Risks Assessment

What is CERA? Coastal Emergency Risks Assessment What is CERA? Coastal Emergency Risks Assessment Visualization tool using OGC standards Displays the outputs from the ADCIRC storm surge model or other coastal models Represents the maps on interactive

More information

HIRES 2017 Syllabus. Instructors:

HIRES 2017 Syllabus. Instructors: HIRES 2017 Syllabus Instructors: Dr. Brian Vant-Hull: Steinman 185, 212-650-8514, brianvh@ce.ccny.cuny.edu Ms. Hannah Aizenman: NAC 7/311, 212-650-6295, haizenman@ccny.cuny.edu Dr. Tarendra Lakhankar:

More information

Sensitivity of precipitation forecasts to cumulus parameterizations in Catalonia (NE Spain)

Sensitivity of precipitation forecasts to cumulus parameterizations in Catalonia (NE Spain) Sensitivity of precipitation forecasts to cumulus parameterizations in Catalonia (NE Spain) Jordi Mercader (1), Bernat Codina (1), Abdelmalik Sairouni (2), Jordi Cunillera (2) (1) Dept. of Astronomy and

More information

SCOTIA WEATHER SERVICES INC.

SCOTIA WEATHER SERVICES INC. SCOTIA WEATHER SERVICES INC. Mission To provide high quality, reliable valued-added environmental information services based on measured and modeled atmospheric, land and/or oceanographic physical parameters

More information

DisDirToXYplus: program&interface b y R o n P e n n d e r s, P A 2 I O N

DisDirToXYplus: program&interface b y R o n P e n n d e r s, P A 2 I O N DisDirToXYplus: program&interface b y R o n P e n n d e r s, P A 2 I O N 2 0 1 7 Abstract DisDir2XY converts geographic vector coordinates into other units and azimuth projections. - Input is manually

More information

Model Output Statistics (MOS)

Model Output Statistics (MOS) Model Output Statistics (MOS) Numerical Weather Prediction (NWP) models calculate the future state of the atmosphere at certain points of time (forecasts). The calculation of these forecasts is based on

More information

DUG User Guide. Version 2.1. Aneta J Florczyk Luca Maffenini Martino Pesaresi Thomas Kemper

DUG User Guide. Version 2.1. Aneta J Florczyk Luca Maffenini Martino Pesaresi Thomas Kemper DUG User Guide Version 2.1 Aneta J Florczyk Luca Maffenini Martino Pesaresi Thomas Kemper 2017 i This publication is a Technical report by the Joint Research Centre (JRC), the European Commission s science

More information

Implementation of CLIMAP and GIS for Mapping the Climatic Dataset of Northern Iraq

Implementation of CLIMAP and GIS for Mapping the Climatic Dataset of Northern Iraq Implementation of CLIMAP and GIS for Mapping the Climatic Dataset of Northern Iraq Sabah Hussein Ali University of Mosul/Remote sensing Center KEYWORDS: CLIMAP, GIS, DEM, Climatic, IRAQ ABSTRACT The main

More information

ENV208/ENV508 Applied GIS. Week 1: What is GIS?

ENV208/ENV508 Applied GIS. Week 1: What is GIS? ENV208/ENV508 Applied GIS Week 1: What is GIS? 1 WHAT IS GIS? A GIS integrates hardware, software, and data for capturing, managing, analyzing, and displaying all forms of geographically referenced information.

More information

YYT-C3002 Application Programming in Engineering GIS I. Anas Altartouri Otaniemi

YYT-C3002 Application Programming in Engineering GIS I. Anas Altartouri Otaniemi YYT-C3002 Application Programming in Engineering GIS I Otaniemi Overview: GIS lectures & exercise We will deal with GIS application development in two lectures. Because of the versatility of GIS data models

More information

Cloud-based WRF Downscaling Simulations at Scale using Community Reanalysis and Climate Datasets

Cloud-based WRF Downscaling Simulations at Scale using Community Reanalysis and Climate Datasets Cloud-based WRF Downscaling Simulations at Scale using Community Reanalysis and Climate Datasets Luke Madaus -- 26 June 2018 luke.madaus@jupiterintel.com 2018 Unidata Users Workshop Outline What is Jupiter?

More information

Open Source ENKI: Dynamic Environmental Model Framework. A possible pre-processor for WRF-Hydro?

Open Source ENKI: Dynamic Environmental Model Framework. A possible pre-processor for WRF-Hydro? Open Source ENKI: Dynamic Environmental Model Framework A possible pre-processor for WRF-Hydro? 1st European Fully Coupled AtmosphericHydrological Modeling and WRF-Hydro Users workshop. University of Calabria.

More information

SAMPLE. SITE SPECIFIC WEATHER ANALYSIS Wind Report. Robinson, Smith & Walsh. John Smith REFERENCE:

SAMPLE. SITE SPECIFIC WEATHER ANALYSIS Wind Report. Robinson, Smith & Walsh. John Smith REFERENCE: SAMPLE SITE SPECIFIC WEATHER ANALYSIS Wind Report PREPARED FOR: Robinson, Smith & Walsh John Smith REFERENCE: JACK HIGGINS / 4151559-01 CompuWeather Sample Report Please note that this report contains

More information

GeoWEPP Tutorial Appendix

GeoWEPP Tutorial Appendix GeoWEPP Tutorial Appendix Chris S. Renschler University at Buffalo - The State University of New York Department of Geography, 116 Wilkeson Quad Buffalo, New York 14261, USA Prepared for use at the WEPP/GeoWEPP

More information

Comparison of the NCEP and DTC Verification Software Packages

Comparison of the NCEP and DTC Verification Software Packages Comparison of the NCEP and DTC Verification Software Packages Point of Contact: Michelle Harrold September 2011 1. Introduction The National Centers for Environmental Prediction (NCEP) and the Developmental

More information

Development of Kanako, a wide use 1-D and 2-D debris flow simulator equipped with GUI

Development of Kanako, a wide use 1-D and 2-D debris flow simulator equipped with GUI Monitoring, Simulation, Prevention and Remediation of Dense Debris Flows II 49 Development of Kanako, a wide use 1-D and 2-D debris flow simulator equipped with GUI K. Nakatani, T. Wada, Y. Satofuka &

More information

Chapter 3. Materials and Methods

Chapter 3. Materials and Methods Chapter 3 Materials and Methods CHAPTER3 MATERIALS AND METHODS The present study aims to identify the role of climatic factors in the dispersal of air pollutants released into the atmosphere at some important

More information

A Cloud-Based Flood Warning System For Forecasting Impacts to Transportation Infrastructure Systems

A Cloud-Based Flood Warning System For Forecasting Impacts to Transportation Infrastructure Systems A Cloud-Based Flood Warning System For Forecasting Impacts to Transportation Infrastructure Systems Jon Goodall Associate Professor, Civil and Environmental Engineering Associate Director, Link Lab April

More information

ONLINE DECISION SUPPORT TOOL FOR AVALANCHE RISK MANAGEMENT. Patrick Nairz* Avalanche Warning Center Tyrol, Austria

ONLINE DECISION SUPPORT TOOL FOR AVALANCHE RISK MANAGEMENT. Patrick Nairz* Avalanche Warning Center Tyrol, Austria ONLINE DECISION SUPPORT TOOL FOR AVALANCHE RISK MANAGEMENT Patrick Nairz* Avalanche Warning Center Tyrol, Austria Karel Kriz and Michaela Kinberger Department of Geography and Regional Research, University

More information

User Guide for the MATCH stand alone Module of RODOS-PV 5.0

User Guide for the MATCH stand alone Module of RODOS-PV 5.0 User Guide for the MATCH stand alone Module of RODOS-PV 5.0 Lennart Robertson USER GUIDE FOR THE MATCH STAND ALONE MODULE OF RODOS-PV 5.0 1 1 Overview 2 1.1 Resource files 3 1.2 File input and output 3

More information

Simulating Future Climate Change Using A Global Climate Model

Simulating Future Climate Change Using A Global Climate Model Simulating Future Climate Change Using A Global Climate Model Introduction: (EzGCM: Web-based Version) The objective of this abridged EzGCM exercise is for you to become familiar with the steps involved

More information

This tutorial is intended to familiarize you with the Geomatica Toolbar and describe the basics of viewing data using Geomatica Focus.

This tutorial is intended to familiarize you with the Geomatica Toolbar and describe the basics of viewing data using Geomatica Focus. PCI GEOMATICS GEOMATICA QUICKSTART 1. Introduction This tutorial is intended to familiarize you with the Geomatica Toolbar and describe the basics of viewing data using Geomatica Focus. All data used in

More information

Geog 210C Spring 2011 Lab 6. Geostatistics in ArcMap

Geog 210C Spring 2011 Lab 6. Geostatistics in ArcMap Geog 210C Spring 2011 Lab 6. Geostatistics in ArcMap Overview In this lab you will think critically about the functionality of spatial interpolation, improve your kriging skills, and learn how to use several

More information

Introducing GIS analysis

Introducing GIS analysis 1 Introducing GIS analysis GIS analysis lets you see patterns and relationships in your geographic data. The results of your analysis will give you insight into a place, help you focus your actions, or

More information

Nicolas Duchene 1, James Smith 1 and Ian Fuller 2

Nicolas Duchene 1, James Smith 1 and Ian Fuller 2 A METHODOLOGY FOR THE CREATION OF METEOROLOGICAL DATASETS FOR LOCAL AIR QUALITY MODELLING AT AIRPORTS Nicolas Duchene 1, James Smith 1 and Ian Fuller 2 1 ENVISA, Paris, France 2 EUROCONTROL Experimental

More information