Using Python in Climate and Meteorology
|
|
|
- Phoebe Sparks
- 10 years ago
- Views:
Transcription
1 Using Python in Climate and Meteorology Johnny Wei-Bing Lin Physics Department, North Park University Acknowledgments: Many of the CDAT-related slides are copied or adapted from a set by Dean Williams and Charles Doutriaux (LLNL PCMDI). Thanks also to the online CDAT documentation, Peter Caldwell (LLNL), and Alex DeCaria (Millersville Univ.). Slides version date: June 20, Author [email protected]. Presented at National Taiwan University, Taipei, Taiwan. This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License.
2 Outline Why Python? Python tools for data analysis: CDAT. Using Python to make models more modular: The qtcm example.
3 Why Python?: Topics What is Python? Advantages and disadvantages. Why Python is now gaining momentum in the atmospheric-oceanic sciences (AOS) community. Examples of how Python is used as an analysis, visualization, and workflow management tool.
4 What is Python? Structure: Is a scripting, procedural, as well as a fully native object-oriented (O-O) language. Interpreted: Loosely/dynamically-typed and interactive. Data structures: Robust built-in set and users are free to define additional structures. Array syntax: Similar to Matlab, IDL, and Fortran 90 (no loops!). Platform independent, open-source, and free!
5 Python's advantages Concise but natural syntax, both arrays and non-arrays, makes programs clearer. Python is executable pseudocode. Perl is executable line noise. Interpreted language makes development easier. Object-orientation makes code more robust/less brittle. Built-in set of data structures are very powerful and useful (e.g., dictionaries). Namespace management which prevents variable and function collisions. Tight interconnects with compiled languages (Fortran via f2py and C via SWIG), so you can interact with compiled code when speed is vital. Large user and developer base in industry as well as science (e.g., Google, LLNL PCMDI).
6 Python's disadvantages Runs much slower than compiled code (but there are tools to overcome this). Relatively sparse collection of scientific libraries compared to Fortran (but this is growing).
7 Why AOS Python is now gaining momentum Python as a language was developed in the late 1980s, but even as late as 2004, could be considered relatively esoteric. But by 2005, Python made a quantum jump in popularity, and has continued to grow. Now is ranked 8th in the June 2011 TIOBE Programming Community Index (which indicates the popularity of languages). Fortran is ranked 33rd, Matlab 23rd, and IDL is in the undifferentiated th group.
8 Why AOS Python is now gaining momentum (cont.) Around the same time, key tools for AOS use became available: In 2005, NumPy was developed which (finally) provided a standard array package. SciPy was begun in 2001 and incorporated NumPy to create a one-stop shop for scientific computing. CDAT 3.3 was released in 2002, which proved to be the version that really took off (the current version is 5.2). PyNGL and PyNIO were developed in 2004 and 2005, respectively. matplotlib added a contouring package in the mid-2000's.
9 Why AOS Python is now gaining momentum (cont.) Institutional support in the AOS community now includes: Lawrence Livermore National Laboratory's Program for Climate Model Diagnosis and Intercomparison (LLNL PCMDI) produces CDAT, etc. National Center for Atmospheric Research Computational and Information Systems Laboratory (NCAR CISL) produces PyNGL and PyNIO. Center for Ocean-Land-Atmosphere Studies/Institute of Global Environment and Society (COLA/IGES) produces PyGrADS. American Meteorological Society (AMS): Sponsored an Advances in Using Python symposium at the 2011 AMS Annual Meeting (the symposia will reprise in 2012) as well as a Python short course. AOS Python users can now be found practically anywhere. An overview of AOS Python resources is found at the PyAOS website:
10 Example of visualization: Skew-T and meteograms All plots on this slide are produced by PyNGL and taken from their web site. See for code.
11 Example of visualization and delivery of weather maps of NWP model results Screenshots taken from the WxMAP2 package web site.
12 Example of analysis and visualization: Provenance management Session of the VisTrails visualization and data workflow and provenance management system; salinity data in the Columbia River estuary is graphed.
13 Example of analysis, visualization, and workflow management and integration Problem: Many different components of the Applied Climate Information System: Data ingest, distribution, storage, analysis, web services. Solution: Do it all in Python: A single environment of shared state vs. a crazy mix of shell scripts, compiled code, Matlab/IDL scripts, and web server makes for a more powerful, flexible, and maintainable system. Image from: AMS talk by Bill Noon, Northwest Regional Climate Center, Ithaca, NY,
14 Outline Why Python? Python tools for data analysis: CDAT. Using Python to make models more modular: The qtcm example.
15 Python tools for data analysis: Topics We will look at only one tool (the Climate Data Analysis Tools or CDAT) and a few aspects of how that tool helps us with data analysis: What is CDAT? Dealing with missing data: Masked arrays and variables. Comparing different datasets: Time axis alignment. Dealing with different grids: Vertical interpolation, regridding. What is VCDAT? A walk through simple analysis using VCDAT.
16 What is CDAT? Written by LLNL PCMDI and designed for climate science data, CDAT was first released in Unified environment based on the object-oriented Python computer language. Integrated with packages that are useful to the atmospheric sciences community: Climate Data Management System (cdms). NumPy, masked array (ma), masked variable (MV2) Visualization (vcs, Xmgrace, matplotlib, VTK, Visus, etc. And more! (i.e., OPeNDAP, ESG, etc.). Graphical user interface (VCDAT). XML representation (CDML/NcML) for data sets. Community software (BSD open source license). URL:
17 Dealing with missing data: Why masked arrays and masked variables? Python supports array variables (via NumPy). All variables in Python are not technically variables, but objects: Objects hold multiple pieces of data as well as functions that operate on that data. For AOS applications, this means data and metadata (e.g., grid type, missing values, etc.) can both be attached to the variable. Using this capability, we can define not only arrays, but two more array-like variables: masked arrays and masked variables. Metadata attached to the arrays can be used as part of analysis, visualization, etc.
18 What are masked arrays and masked variables?
19 How do masked arrays and masked variables look and act in Python? >>> import numpy as N >>> a = N.array([[1,2,3],[4,5,6]]) >>> a array([[1, 2, 3], [4, 5, 6]]) Arrays: Every element has a value, and operations using the array are defined accordingly. >>> import numpy.ma as ma >>> b = ma.masked_greater(a, 4) >>> b masked_array(data = [[1 2 3] [4 ]], mask = [[False False False] [False True True]], fill_value = ) >>> print a*b [[1 4 9] [16 ]] Masked arrays: A mask of bad values travels with the array. Those elements deemed bad are treated as if they did not exist. Operations using the array automatically utilize the mask of bad values.
20 How do masked arrays and masked variables look in Python (cont.)? Additional info such as: Metadata Axes >>> import MV2 >>> d = MV2.masked_greater(c,4) >>> d.info() *** Description of Slab variable_3 *** id: variable_3 shape: (3, 2) filename: missing_value: 1e+20 comments: grid_name: N/A grid_type: N/A time_statistic: long_name: units: No grid present. ** Dimension 1 ** id: axis_0 Length: 3 First: 0.0 Last: 2.0 Python id: 0x [... rest of output deleted for space...]
21 Comparing different datasets: Time axis alignment Different datasets and model runs can have ways of specifying time, e.g., different: CDAT time axis values can be referenced in two ways: Relative time: A number relative to a datum (e.g., 10 months since Jan 1, 1970). Component time: A date on a specific calendar (e.g., ). If t is your time axis (via gettime): Calendars: Gregorian, Julian, 360 days/year, etc. Starting points: Since 1 B.C./A.D. 1, since Jan 1, 1970, etc. To change to the same relative time datum, e.g.: t.torelativetime('months since ') To change to component time based on a specified calendar, e.g.: t.ascomponenttime(calendar=cdtime.defaultcalendar) From there, you can subset either on the basis of the same relative time values or for a given component time date.
22 Dealing with different grids Vertical interpolation: P = cdutil.vertical.reconstructpressurefromhybrid(ps, A, B, P0) P = cdutil.vertical.linearinterpolation(var, depth, levels) P = cdutil.vertical.loglinearinterpolation(var, depth, levels) Vertical regridding: Use the MV2 pressureregrid method: var_on_new_levels = var.pressureregrid(levout) Horizontal regridding: Create a grid, then use the MV2 regridding method to create a variable on the new grid. E.g., from a rectangular grid to a 96x192 rectangular Gaussian grid: var = f( temp ) n48_grid = cdms2.creategaussiangrid(96) var48 = var.regrid(n48_grid)
23 What is VCDAT? Variable selection VCDAT lets you get familiar with many parts of CDAT without learning Python. The executable is named vcdat and is found in /opt/cdat/bin. Dimension selection and manipulation Variable and graphics selection and manipulation Dean Williams and Charles Doutriaux (LLNL PCMDI)
24 A walk through simple analysis using VCDAT Reading in data (local and remote) Selecting a variable Selecting axis ranges Plotting a longitude-latitude slice Plotting a time-longitude slice Plotting time vs. a regional average Basic calculations using data (defined variables) Saving a plot As a tool for teaching CDAT and Python
25 Outline Why Python? Python tools for data analysis: CDAT. Using Python to make models more modular: The qtcm example.
26 Traditional AOS model coding techniques and tools Written in compiled languages (often Fortran): Pros: Fast, "standard," free, many well-tested libraries. Cons: Natively procedural, limited data structures (related data are not related to each other), non-interactive, portability issues (F90 standard does not specify memory allocation for non-standard data structures and each compiler implements different features differently). Language choice affects development cycle. Interfacing with operating system often unwieldy, through shell scripts, makefiles, etc. Substantial amounts of very old legacy code. Parallelization requires the climate scientist to deal with processor and memory management (MPI) issues.
27 Traditional practices yield problematic and unmodular code Brittle: Errors and collisions are common. Difficult for other users (even yourself a few months/years later!) to understand. Difficult to extend: Interfaces are poorly defined and structured between: Submodels (e.g., between atmosphere and ocean) Subroutines/procedures in a model Models and the operating system Models and the user (in terms of the user's thinking processes) Non-portable: Difficult for models and sub-models to talk to one another, sometimes even on the same platform.
28 Capabilities of Python to help modularize models Object-orientation: Makes it easier to develop robust and multiapplication interfaces between tools, and, in theory, more closely approximate human mental representations of the world. Interpreted and dynamically-typed: Enables run time alteration of variables, as well as the reuse of code in multiple contexts (e.g., c=a*b works properly in a routine without change regardless of what type, size, and rank a and b are). Shared state: You can access virtually all variables. Note this is not some sort of giant common block, because namespace management and object decomposition automatically protect from collisions and accidental overwriting. Built-in set/collection data structures (i.e., lists, dictionaries) greatly improve the flexibility of the code. Clarity of syntax: Code is more robust and modules developed for different applications can be more easily reused.
29 Example of modularizing a model with Python: The qtcm atmospheric model Originally there was QTCM1, the Neelin-Zeng QuasiEquilibrium Tropical Circulation Model (Neelin & Zeng 1999 and Zeng et al. 1999). Intermediate-level atmospheric model Written in Fortran. Vertical temperature and moisture profiles based upon convective quasi-equilibrium assumption. Resolution deg longitude, 3.75 deg latitude. Includes a simple radiative code and a Betts-Miller (1986) type convective scheme. Reasonable simulation of tropical climatology and also includes Madden-Julian oscillation (MJO)-like variability.
30 The qtcm atmospheric model (cont.) qtcm is a Python wrapping of QTCM1: Connectivity: Through the program f2py: Fortran: Numerics of QTCM1. Python: User-interface wrapper that manages variables, routine execution order, runs, and model instances. Almost automatically makes the Fortran routines and memory space available to Python. You can set Fortran variables at the Python level, even at run time.
31 qtcm features: A simple qtcm run from qtcm import Qtcm inputs = {} inputs['runname'] = 'test' inputs['landon'] = 0 inputs['year0'] = 1 inputs['month0'] = 11 inputs['day0'] = 1 inputs['lastday'] = 30 inputs['mrestart'] = 0 inputs['compiled_form'] = 'parts' model = Qtcm(**inputs) model.run_session() Configuration keywords in this run yield: The output filenames will contain the string given by runname. Aquaplanet (set by landon). Start from Nov 1, Year 1. Run for 30 days. Start from a newly initialized model state. Run the model using the run_session method. compiled_form keyword chooses the model version that gives control down to the atmospheric timestep.
32 qtcm features: Run sessions and a continuation run in qtcm inputs['year0'] = 1 inputs['month0'] = 11 inputs['day0'] = 1 inputs['lastday'] = 10 inputs['mrestart'] = 0 inputs['compiled_form'] = 'parts' model = Qtcm(**inputs) model.run_session() model.u1.value = model.u1.value * 2.0 model.init_with_instance_state = True model.run_session(cont=30) One run session is conducted with the model instance. The value of u1, the baroclinic zonal wind, is doubled. A continuation run is made for 30 more days. All this can be controlled at runtime, and interactively.
33 qtcm features: Multiple qtcm model runs using a snapshot from a previous run session model.run_session() mysnapshot = model.snapshot model1.sync_set_py_values_to_snapshot(snapshot=mysnapshot) model2.sync_set_py_values_to_snapshot(snapshot=mysnapshot) model1.run_session() model2.run_session() Snapshots are variables (dictionary objects) that act as restart files. model1 and model2 are separate instances of the Qtcm class and are truly independent (they share no variables or memory). Again, objects enable us to control model configuration and execution in a clear but powerful way.
34 qtcm features: Runlists make the model very modular >>> model = Qtcm(compiled form= parts ) >>> print model.runlists[ qtcminit ] [' qtcm.wrapcall.wparinit, qtcm.wrapcall.wbndinit, varinit, { qtcm.wrapcall.wtimemanager : [1]}, atm physics1 ] Runlists specify a series of Python or Fortran methods, functions, subroutines (or other run lists) that will be executed when the list is passed into a call of the run_list method. Routines in run lists are identified by strings (instead of, for instance, as a memory pointer to a library archive object file) and so what routines the model executes are fully changeable at run time. The example shows a list with two Fortran subroutines without input parameters, a Python method without input parameters, a Fortran subroutine with an input parameter, and another run list.
35 qtcm benefits: Improving the modeling and analysis cycle for climate modeling studies The object decomposition provides a high level of flexibility for changing i/o, data, variables, subroutine execution order, and the routines themselves at run time. The performance penalty of this hybrid-languge model vs. the Fortran-only version of the model is 4 9%. But for this cost, modeling is now no longer a static exercise (i.e., set parameters, run, analyze output). With modeling more dynamic, the modeling study can adapt and change as the model runs. This means that we can unify not only the traditionally computer-controlled portions of a modeling workflow, but also parts of the traditionally human-controlled portions (hypothesis generation).
36 qtcm benefits: Improving the modeling and analysis cycle for climate modeling studies (cont.) Traditional analysis sequence used in modeling studies: Transformed analysis sequence using qtcm-like tools: Outlined arrows = mainly human input. Gray-filled arrows = a mix of human and computer-controlled input. Completely filled (black)-arrows = purely computercontrolled input. Model output analysis can now automatically control future model runs. Try doing that with a kludge of shell scripts, pre-processors, Matlab scripts, etc.!
37 qtcm benefits: Modeling can be interactive Because Python is interpreted, this permits model alteration at run time and thus interactive modeling. All variables can be changed at run time and in the model run. Visualization can also be done interactively.
38 Conclusions Python is a mature, comprehensive computational environment for all aspects of the atmospheric and oceanic sciences. AOS Python tools make data analysis much easier to do. Python offers tools to make models more flexible and capable of exploring previously difficult to access scientific problems. And it's (mostly) all free!
The Ultra-scale Visualization Climate Data Analysis Tools (UV-CDAT): A Vision for Large-Scale Climate Data
The Ultra-scale Visualization Climate Data Analysis Tools (UV-CDAT): A Vision for Large-Scale Climate Data Lawrence Livermore National Laboratory? Hank Childs (LBNL) and Charles Doutriaux (LLNL) September
Exploratory Climate Data Visualization and Analysis
Exploratory Climate Data Visualization and Analysis by Thomas Maxwell, Jerry Potter & Laura Carriere, NASA NCCS and the UVCDAT Development Consortium Scientific Visualization! We process, understand, and
VisCMD: Visualizing Cloud Modeling Data
CPSC-533C Information Visualization Project Report VisCMD: Visualizing Cloud Modeling Data Quanzhen Geng (#63546014) and Jing Li (#90814013) Email: [email protected] [email protected] (Master of Software
Scientific Programming, Analysis, and Visualization with Python. Mteor 227 Fall 2015
Scientific Programming, Analysis, and Visualization with Python Mteor 227 Fall 2015 Python The Big Picture Interpreted General purpose, high-level Dynamically type Multi-paradigm Object-oriented Functional
The Flexible Climate Data Analysis Tools (CDAT) for Multimodel Climate Simulation Data
The Flexible Climate Data Analysis Tools (CDAT) for Multimodel Climate Simulation Data Dean N. Williams PCMDI/LLNL 7000 East Ave. 1 (925) 423-0145 [email protected] Charles M. Doutriaux PCMDI/LLNL 7000
HYCOM Meeting. Tallahassee, FL
HYCOM Data Service An overview of the current status and new developments in Data management, software and hardware Ashwanth Srinivasan & Jon Callahan COAPS FSU & PMEL HYCOM Meeting Nov 7-9, 7 2006 Tallahassee,
CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler
CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler 1) Operating systems a) Windows b) Unix and Linux c) Macintosh 2) Data manipulation tools a) Text Editors b) Spreadsheets
HPC Wales Skills Academy Course Catalogue 2015
HPC Wales Skills Academy Course Catalogue 2015 Overview The HPC Wales Skills Academy provides a variety of courses and workshops aimed at building skills in High Performance Computing (HPC). Our courses
NetCDF and HDF Data in ArcGIS
2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop NetCDF and HDF Data in ArcGIS Nawajish Noman Kevin Butler Esri UC2013. Technical Workshop. Outline NetCDF
Intro to scientific programming (with Python) Pietro Berkes, Brandeis University
Intro to scientific programming (with Python) Pietro Berkes, Brandeis University Next 4 lessons: Outline Scientific programming: best practices Classical learning (Hoepfield network) Probabilistic learning
Web Based Visualization Tool for Climate Data Using Python. Hannah Aizenman and Michael Grossberg. David Jones and Nick Barnes
1.1 Web Based Visualization Tool for Climate Data Using Python Hannah Aizenman and Michael Grossberg Glasslab, City College of New York, New York, New York David Jones and Nick Barnes Climate Code Foundation,
IDL. Get the answers you need from your data. IDL
Get the answers you need from your data. IDL is the preferred computing environment for understanding complex data through interactive visualization and analysis. IDL Powerful visualization. Interactive
Why (and Why Not) to Use Fortran
Why (and Why Not) to Use Fortran p. 1/?? Why (and Why Not) to Use Fortran Instead of C++, Matlab, Python etc. Nick Maclaren University of Cambridge Computing Service [email protected], 01223 334761 June 2012
Postprocessing with Python
Postprocessing with Python Boris Dintrans (CNRS & University of Toulouse) [email protected] Collaborator: Thomas Gastine (PhD) Outline Outline Introduction - what s Python and why using it? - Installation
Instructional Design Framework CSE: Unit 1 Lesson 1
Instructional Design Framework Stage 1 Stage 2 Stage 3 If the desired end result is for learners to then you need evidence of the learners ability to then the learning events need to. Stage 1 Desired Results
Part I Courses Syllabus
Part I Courses Syllabus This document provides detailed information about the basic courses of the MHPC first part activities. The list of courses is the following 1.1 Scientific Programming Environment
Programming and Software Development CTAG Alignments
Programming and Software Development CTAG Alignments This document contains information about four Career-Technical Articulation Numbers (CTANs) for Programming and Software Development Career-Technical
Adaptive Sampling and the Autonomous Ocean Sampling Network: Bringing Data Together With Skill
Adaptive Sampling and the Autonomous Ocean Sampling Network: Bringing Data Together With Skill Lev Shulman, University of New Orleans Mentors: Paul Chandler, Jim Bellingham, Hans Thomas Summer 2003 Keywords:
ANSA and μeta as a CAE Software Development Platform
ANSA and μeta as a CAE Software Development Platform Michael Giannakidis, Yianni Kolokythas BETA CAE Systems SA, Thessaloniki, Greece Overview What have we have done so far Current state Future direction
Programming Languages & Tools
4 Programming Languages & Tools Almost any programming language one is familiar with can be used for computational work (despite the fact that some people believe strongly that their own favorite programming
Climate-Weather Modeling Studies Using a Prototype Global Cloud-System Resolving Model
ANL/ALCF/ESP-13/1 Climate-Weather Modeling Studies Using a Prototype Global Cloud-System Resolving Model ALCF-2 Early Science Program Technical Report Argonne Leadership Computing Facility About Argonne
Introduction to Python
1 Daniel Lucio March 2016 Creator of Python https://en.wikipedia.org/wiki/guido_van_rossum 2 Python Timeline Implementation Started v1.0 v1.6 v2.1 v2.3 v2.5 v3.0 v3.1 v3.2 v3.4 1980 1991 1997 2004 2010
Chapter 13: Program Development and Programming Languages
15 th Edition Understanding Computers Today and Tomorrow Comprehensive Chapter 13: Program Development and Programming Languages Deborah Morley Charles S. Parker Copyright 2015 Cengage Learning Learning
Performance Engineering of the Community Atmosphere Model
Performance Engineering of the Community Atmosphere Model Patrick H. Worley Oak Ridge National Laboratory Arthur A. Mirin Lawrence Livermore National Laboratory 11th Annual CCSM Workshop June 20-22, 2006
Norwegian Satellite Earth Observation Database for Marine and Polar Research http://normap.nersc.no USE CASES
Norwegian Satellite Earth Observation Database for Marine and Polar Research http://normap.nersc.no USE CASES The NORMAP Project team has prepared this document to present functionality of the NORMAP portal.
1. Overview of the Java Language
1. Overview of the Java Language What Is the Java Technology? Java technology is: A programming language A development environment An application environment A deployment environment It is similar in syntax
SOFTWARE TESTING TRAINING COURSES CONTENTS
SOFTWARE TESTING TRAINING COURSES CONTENTS 1 Unit I Description Objectves Duration Contents Software Testing Fundamentals and Best Practices This training course will give basic understanding on software
Introduction Our choice Example Problem Final slide :-) Python + FEM. Introduction to SFE. Robert Cimrman
Python + FEM Introduction to SFE Robert Cimrman Department of Mechanics & New Technologies Research Centre University of West Bohemia Plzeň, Czech Republic April 3, 2007, Plzeň 1/22 Outline 1 Introduction
NASA's Strategy and Activities in Server Side Analytics
NASA's Strategy and Activities in Server Side Analytics Tsengdar Lee, Ph.D. High-end Computing Program Manager NASA Headquarters Presented at the ESGF/UVCDAT Conference Lawrence Livermore National Laboratory
Curriculum Map. Discipline: Computer Science Course: C++
Curriculum Map Discipline: Computer Science Course: C++ August/September: How can computer programs make problem solving easier and more efficient? In what order does a computer execute the lines of code
Introducing Apache Pivot. Greg Brown, Todd Volkert 6/10/2010
Introducing Apache Pivot Greg Brown, Todd Volkert 6/10/2010 Speaker Bios Greg Brown Senior Software Architect 15 years experience developing client and server applications in both services and R&D Apache
Algorithm & Flowchart & Pseudo code. Staff Incharge: S.Sasirekha
Algorithm & Flowchart & Pseudo code Staff Incharge: S.Sasirekha Computer Programming and Languages Computers work on a set of instructions called computer program, which clearly specify the ways to carry
Modern Software Development Tools on OpenVMS
Modern Software Development Tools on OpenVMS Meg Watson Principal Software Engineer 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Topics
William E. Hart Carl Laird Jean-Paul Watson David L. Woodruff. Pyomo Optimization. Modeling in Python. ^ Springer
William E Hart Carl Laird Jean-Paul Watson David L Woodruff Pyomo Optimization Modeling in Python ^ Springer Contents 1 Introduction 1 11 Mathematical Modeling 1 12 Modeling Languages for Optimization
Scientific Programming in Python
UCSD March 9, 2009 What is Python? Python in a very high level (scripting) language which has gained widespread popularity in recent years. It is: What is Python? Python in a very high level (scripting)
So today we shall continue our discussion on the search engines and web crawlers. (Refer Slide Time: 01:02)
Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #39 Search Engines and Web Crawler :: Part 2 So today we
Python for Scientific Computing. http://bender.astro.sunysb.edu/classes/python-science
http://bender.astro.sunysb.edu/classes/python-science Course Goals Simply: to learn how to use python to do Numerical analysis Data analysis Plotting and visualizations Symbol mathematics Write applications...
ParaView s Comparative Viewing, XY Plot, Spreadsheet View, Matrix View
ParaView s Comparative Viewing, XY Plot, Spreadsheet View, Matrix View Dublin, March 2013 Jean M. Favre, CSCS Motivational movie Supercomputing 2011 Movie Gallery Accepted at Supercomputing 11 Visualization
CS 40 Computing for the Web
CS 40 Computing for the Web Art Lee January 20, 2015 Announcements Course web on Sakai Homework assignments submit them on Sakai Email me the survey: See the Announcements page on the course web for instructions
Programming models for heterogeneous computing. Manuel Ujaldón Nvidia CUDA Fellow and A/Prof. Computer Architecture Department University of Malaga
Programming models for heterogeneous computing Manuel Ujaldón Nvidia CUDA Fellow and A/Prof. Computer Architecture Department University of Malaga Talk outline [30 slides] 1. Introduction [5 slides] 2.
Performance Monitoring of Parallel Scientific Applications
Performance Monitoring of Parallel Scientific Applications Abstract. David Skinner National Energy Research Scientific Computing Center Lawrence Berkeley National Laboratory This paper introduces an infrastructure
HEP data analysis using jhepwork and Java
HEP data analysis using jhepwork and Java S. Chekanov HEP Division, Argonne National Laboratory, 9700 S.Cass Avenue, Argonne, IL 60439 USA 1 Introduction Abstract A role of Java in high-energy physics
Structure? Integrated Climate Data Center How to use the ICDC? Tools? Data Formats? User
Integrated Climate Data Center? Data Formats?? Tools???? visits Structure???? User Contents Which Data Formats do we offer? What is the Structure of our data center? Which Tools do we provide? Our Aims
HYCOM Data Management -- opportunities & planning --
HYCOM Data Management -- opportunities & planning -- Steve Hankin (NOAA/PMEL) Ashwanth Srinivasan, (RSMAS) Peter Cornillon, OPeNDAP PI (URI) Mike Clancy, US GODAE Server (FNMOC) Jon Callahan, Kevin O Brien
Developing a Website. Chito N. Angeles Web Technologies: Training for Development and Teaching Resources
Developing a Website Chito N. Angeles Web Technologies: Training for Development and Teaching Resources Static vs. Dynamic Website Static Website Traditional Website Contains a fixed amount of pages and
Big Data Paradigms in Python
Big Data Paradigms in Python San Diego Data Science and R Users Group January 2014 Kevin Davenport! http://kldavenport.com [email protected] @KevinLDavenport Thank you to our sponsors: Setting up
Assignment 2: Option Pricing and the Black-Scholes formula The University of British Columbia Science One CS 2015-2016 Instructor: Michael Gelbart
Assignment 2: Option Pricing and the Black-Scholes formula The University of British Columbia Science One CS 2015-2016 Instructor: Michael Gelbart Overview Due Thursday, November 12th at 11:59pm Last updated
6.170 Tutorial 3 - Ruby Basics
6.170 Tutorial 3 - Ruby Basics Prerequisites 1. Have Ruby installed on your computer a. If you use Mac/Linux, Ruby should already be preinstalled on your machine. b. If you have a Windows Machine, you
Unlocking the True Value of Hadoop with Open Data Science
Unlocking the True Value of Hadoop with Open Data Science Kristopher Overholt Solution Architect Big Data Tech 2016 MinneAnalytics June 7, 2016 Overview Overview of Open Data Science Python and the Big
Building Applications Using Micro Focus COBOL
Building Applications Using Micro Focus COBOL Abstract If you look through the Micro Focus COBOL documentation, you will see many different executable file types referenced: int, gnt, exe, dll and others.
Processing Data with rsmap3d Software Services Group Advanced Photon Source Argonne National Laboratory
Processing Data with rsmap3d Software Services Group Advanced Photon Source Argonne National Laboratory Introduction rsmap3d is an application for producing 3D reciprocal space maps from x-ray diffraction
JMulTi/JStatCom - A Data Analysis Toolkit for End-users and Developers
JMulTi/JStatCom - A Data Analysis Toolkit for End-users and Developers Technology White Paper JStatCom Engineering, www.jstatcom.com by Markus Krätzig, June 4, 2007 Abstract JStatCom is a software framework
An Introduction to High Performance Computing in the Department
An Introduction to High Performance Computing in the Department Ashley Ford & Chris Jewell Department of Statistics University of Warwick October 30, 2012 1 Some Background 2 How is Buster used? 3 Software
Bachelor of Games and Virtual Worlds (Programming) Subject and Course Summaries
First Semester Development 1A On completion of this subject students will be able to apply basic programming and problem solving skills in a 3 rd generation object-oriented programming language (such as
PART 1. Representations of atmospheric phenomena
PART 1 Representations of atmospheric phenomena Atmospheric data meet all of the criteria for big data : they are large (high volume), generated or captured frequently (high velocity), and represent a
STUDY AND SIMULATION OF A DISTRIBUTED REAL-TIME FAULT-TOLERANCE WEB MONITORING SYSTEM
STUDY AND SIMULATION OF A DISTRIBUTED REAL-TIME FAULT-TOLERANCE WEB MONITORING SYSTEM Albert M. K. Cheng, Shaohong Fang Department of Computer Science University of Houston Houston, TX, 77204, USA http://www.cs.uh.edu
Software and Performance Engineering of the Community Atmosphere Model
Software and Performance Engineering of the Community Atmosphere Model Patrick H. Worley Oak Ridge National Laboratory Arthur A. Mirin Lawrence Livermore National Laboratory Science Team Meeting Climate
The Arctic Observing Network and its Data Management Challenges Florence Fetterer (NSIDC/CIRES/CU), James A. Moore (NCAR/EOL), and the CADIS team
The Arctic Observing Network and its Data Management Challenges Florence Fetterer (NSIDC/CIRES/CU), James A. Moore (NCAR/EOL), and the CADIS team Photo courtesy Andrew Mahoney NSF Vision What is AON? a
PSS E. High-Performance Transmission Planning Application for the Power Industry. Answers for energy.
PSS E High-Performance Transmission Planning Application for the Power Industry Answers for energy. PSS E architecture power flow, short circuit and dynamic simulation Siemens Power Technologies International
The Benefits of Component Object- Based SCADA and Supervisory System Application Development
The Benefits of Component Object- Based SCADA and Supervisory System Application Development By Steven D. Garbrecht, Marketing Program Manager for Infrastructure and Platforms Table of Contents 1. Overview...
Visualization of Climate Data in R. By: Mehrdad Nezamdoost [email protected] April 2013
Visualization of Climate Data in R By: Mehrdad Nezamdoost [email protected] April 2013 Content Why visualization is important? How climate data store? Why R? Packages which used in R Some Result
Chapter 1. Dr. Chris Irwin Davis Email: [email protected] Phone: (972) 883-3574 Office: ECSS 4.705. CS-4337 Organization of Programming Languages
Chapter 1 CS-4337 Organization of Programming Languages Dr. Chris Irwin Davis Email: [email protected] Phone: (972) 883-3574 Office: ECSS 4.705 Chapter 1 Topics Reasons for Studying Concepts of Programming
VisIt Visualization Tool
The Center for Astrophysical Thermonuclear Flashes VisIt Visualization Tool Randy Hudson [email protected] Argonne National Laboratory Flash Center, University of Chicago An Advanced Simulation and Computing
Parallel Analysis and Visualization on Cray Compute Node Linux
Parallel Analysis and Visualization on Cray Compute Node Linux David Pugmire, Oak Ridge National Laboratory and Hank Childs, Lawrence Livermore National Laboratory and Sean Ahern, Oak Ridge National Laboratory
An Integrated Simulation and Visualization Framework for Tracking Cyclone Aila
An Integrated Simulation and Visualization Framework for Tracking Cyclone Aila Preeti Malakar 1, Vijay Natarajan, Sathish S. Vadhiyar, Ravi S. Nanjundiah Department of Computer Science and Automation Supercomputer
Basic Climatological Station Metadata Current status. Metadata compiled: 30 JAN 2008. Synoptic Network, Reference Climate Stations
Station: CAPE OTWAY LIGHTHOUSE Bureau of Meteorology station number: Bureau of Meteorology district name: West Coast State: VIC World Meteorological Organization number: Identification: YCTY Basic Climatological
Jonathan Worthington Scarborough Linux User Group
Jonathan Worthington Scarborough Linux User Group Introduction What does a Virtual Machine do? Hides away the details of the hardware platform and operating system. Defines a common set of instructions.
THE CERN/SL XDATAVIEWER: AN INTERACTIVE GRAPHICAL TOOL FOR DATA VISUALIZATION AND EDITING
THE CERN/SL XDATAVIEWER: AN INTERACTIVE GRAPHICAL TOOL FOR DATA VISUALIZATION AND EDITING Abstract G. Morpurgo, CERN As a result of many years of successive refinements, the CERN/SL Xdataviewer tool has
Technical. Overview. ~ a ~ irods version 4.x
Technical Overview ~ a ~ irods version 4.x The integrated Ru e-oriented DATA System irods is open-source, data management software that lets users: access, manage, and share data across any type or number
The Data Grid: Towards an Architecture for Distributed Management and Analysis of Large Scientific Datasets
The Data Grid: Towards an Architecture for Distributed Management and Analysis of Large Scientific Datasets!! Large data collections appear in many scientific domains like climate studies.!! Users and
Computing, technology & Data Analysis in the Graduate Curriculum. Duncan Temple Lang UC Davis Dept. of Statistics
Computing, technology & Data Analysis in the Graduate Curriculum Duncan Temple Lang UC Davis Dept. of Statistics JSM 08 Statistics is much broader than we represent in our educational programs Context
Good FORTRAN Programs
Good FORTRAN Programs Nick West Postgraduate Computing Lectures Good Fortran 1 What is a Good FORTRAN Program? It Works May be ~ impossible to prove e.g. Operating system. Robust Can handle bad data e.g.
Chapter 12 Programming Concepts and Languages
Chapter 12 Programming Concepts and Languages Chapter 12 Programming Concepts and Languages Paradigm Publishing, Inc. 12-1 Presentation Overview Programming Concepts Problem-Solving Techniques The Evolution
CHAPTER FIVE RESULT ANALYSIS
CHAPTER FIVE RESULT ANALYSIS 5.1 Chapter Introduction 5.2 Discussion of Results 5.3 Performance Comparisons 5.4 Chapter Summary 61 5.1 Chapter Introduction This chapter outlines the results obtained from
STATEMENT OF WORK. NETL Cooperative Agreement DE-FC26-02NT41476
STATEMENT OF WORK NETL Cooperative Agreement DE-FC26-02NT41476 Database and Analytical Tool for the Management of Data Derived from U. S. DOE (NETL) Funded Fine Particulate (PM 2.5 ) Research PROJECT SCOPE
Chapter 13: Program Development and Programming Languages
Understanding Computers Today and Tomorrow 12 th Edition Chapter 13: Program Development and Programming Languages Learning Objectives Understand the differences between structured programming, object-oriented
Availability of the Program A free version is available of each (see individual programs for links).
Choosing a Programming Platform Diane Hobenshield Tepylo, Lisa Floyd, and Steve Floyd (Computer Science and Mathematics teachers) The Tasks Working Group had many questions and concerns about choosing
The C Programming Language course syllabus associate level
TECHNOLOGIES The C Programming Language course syllabus associate level Course description The course fully covers the basics of programming in the C programming language and demonstrates fundamental programming
1/20/2016 INTRODUCTION
INTRODUCTION 1 Programming languages have common concepts that are seen in all languages This course will discuss and illustrate these common concepts: Syntax Names Types Semantics Memory Management We
Tutorial #2 Tracers. LMDZ team December 12, 2013. 1 Setting up a case with a zoomed grid 1
Tutorial #2 Tracers LMDZ team December 12, 2013 Contents 1 Setting up a case with a zoomed grid 1 2 Tracers 2 2.1 Radon and lead............................ 2 2.2 Inserting new tracers.........................
Magento & Zend Benchmarks Version 1.2, 1.3 (with & without Flat Catalogs)
Magento & Zend Benchmarks Version 1.2, 1.3 (with & without Flat Catalogs) 1. Foreword Magento is a PHP/Zend application which intensively uses the CPU. Since version 1.1.6, each new version includes some
Scientific Data Management and Dissemination
Federal GIS Conference February 9 10, 2015 Washington, DC Scientific Data Management and Dissemination John Fry Solution Engineer, Esri [email protected] Agenda Background of Scientific Data Management through
Real-Time Analytics on Large Datasets: Predictive Models for Online Targeted Advertising
Real-Time Analytics on Large Datasets: Predictive Models for Online Targeted Advertising Open Data Partners and AdReady April 2012 1 Executive Summary AdReady is working to develop and deploy sophisticated
Visualization with ParaView. Greg Johnson
Visualization with Greg Johnson Before we begin Make sure you have 3.8.0 installed so you can follow along in the lab section http://paraview.org/paraview/resources/software.html http://www.paraview.org/
Pivot Charting in SharePoint with Nevron Chart for SharePoint
Pivot Charting in SharePoint Page 1 of 10 Pivot Charting in SharePoint with Nevron Chart for SharePoint The need for Pivot Charting in SharePoint... 1 Pivot Data Analysis... 2 Functional Division of Pivot
an introduction to VISUALIZING DATA by joel laumans
an introduction to VISUALIZING DATA by joel laumans an introduction to VISUALIZING DATA iii AN INTRODUCTION TO VISUALIZING DATA by Joel Laumans Table of Contents 1 Introduction 1 Definition Purpose 2 Data
Data Visualization Frameworks: D3.js vs. Flot vs. Highcharts by Igor Zalutsky, JavaScript Developer at Altoros
Data Visualization Frameworks: D3.js vs. Flot vs. Highcharts by Igor Zalutsky, JavaScript Developer at Altoros 2013 Altoros, Any unauthorized republishing, rewriting or use of this material is prohibited.
Analysis Programs DPDAK and DAWN
Analysis Programs DPDAK and DAWN An Overview Gero Flucke FS-EC PNI-HDRI Spring Meeting April 13-14, 2015 Outline Introduction Overview of Analysis Programs: DPDAK DAWN Summary Gero Flucke (DESY) Analysis
Asynchronous Data Mining Tools at the GES-DISC
Asynchronous Data Mining Tools at the GES-DISC Long B. Pham, Stephen W. Berrick, Christopher S. Lynnes and Eunice K. Eng NASA Goddard Space Flight Center Distributed Active Archive Center Introduction
