SlideShare uma empresa Scribd logo
1 de 78
Baixar para ler offline
  Name                :   Arulalan.T

 Register No     :    21607621001

 Class               :      Final Year MCA
Project Title              


            Contour Analysis And     
                   Visualization

Guide


               Mr.V.Loganathan
Thanks To . . . 
            Dr.S.Lourdu Marian               
                          Hod
            Mr.V.Loganathan
                       Sr.Lecturer
            Mr.Charles Doutriaux 
                     CDAT Developer
            Dr. Krishna AchutaRao 
             Center for Atmospheric Science  
                    IIT Delhi
Abstract  :

     To visualize the heat values in terms of contour lines 
in 3 Dimensional view and plotting the dynamic 
isotherm lines over CDAT India map.

    Contour is a line drawn on a map connecting points of 
equal height. Contour lines connect a series of points of 
equal elevation and are used to illustrate topography on 
a map.

    
  
Abstract  :

      They show the height of ground above Mean Sea 
Level (M.S.L.) in either feet or meters and can be drawn 
at any desired interval.

     An isotherm (meaning ’heat’) is a line that connects 
points on a map that have the same temperature.
Therefore, all points through which an isotherm passes 
have the same temperatures at the time indicated.
    
 
Abstract  :

     1. CDAT­Climate Data Analysis and Tool which is an 
open source tool for plotting world map, contours and 
isolines. Mainly it is used for meteorological department.

    Finding the current temperature on overall India 
cities from the google and using that temperature 
values, plotting the isotherm lines on CDAT India map.

    So that , we can view the current temperature values 
on all cities in India in terms of isotherm lines.
 
Abstract  :

     2.  Demonstrating how the contour lines are forming 
by using Arduino board and heat sensors.

    By setting the heat sensors in various temperature 
and convert those heat values into contour lines, 
interactively. We can view this contour in 3 dimensional 
view using Matplotlib.

    Matplotlib is an open source python library to plot and 
view in 2 dimensional and 3 dimensional of the scientific 
and mathametic terms.
    
Abstract  :

    This prototype is going to prove that we can view the 
pressure values in terms of contour lines.

    Using the contour lines an meteorologist can analysis 
the climate.
    
    
Existing System Architecture
    
  1.CDAT ­ Climate Data Analysis and Tool is an 
popular open source tool which is used for meteorological 
department.

    Using this tool , user can plot the isolines over on 
world or any continents.

    There is no way to obtainable and plotting the current 
isotherm lines over any continent for every hour using 
CDAT.
    
  
    
Existing System Architecture
    

  2.Matplotlib ­ is a python 2D and 3D plotting library 
which produces scientific,mathametical representations 
and contour.

    3.Arduino board convert the heat sensors analog 
values into digital values.
    
  
    
Disadvantages Of The Existing System

 
 1. User can not create their own isolines. They can set 
just levels only.

  2. There is no combined tool which will convert the heat 
values into the contour lines.

  
 Proposed System Architecture

    The proposed system aims to give the solution to above 
both problems.

    1. Make the dynamic isolines in CDAT and it should be 
created by the user.
    So that any one can make their own isolines in CDAT 
and it will be plotted on any continents.

    2. Combining the Arduino environment and Matplotlib 
library to give the solution which is converting the 
dynamic heat varying values into 3D contour levels, 
interactively.
 Advantages Of The Proposed System

  • CDAT user can create our own isolines dynamically

  • Plotting the current isotherm lines over CDAT India 
map by web­scraping current temperature of the all over 
cities in India.

  • Automate the above process and email to us with the 
resultant output attachment.

  • Using the arduino board and matplotlib, we can see the 
real time temperature in terms of contour.
System requirement

 Hardware

  * Dual Core Intel 2 Ghz Processor Machine
  * Decent Broadband Connection
     * Arduino At Mega 8 Board
     * Heat Sensors ( LM35 )

Software

    * A linux distro ­ in my case Ubuntu 9.10
    * Python,CDAT, Matplotlib, Arduino IDE
    * Dependencies  
  Isolines
      ­ Contour
      ­ Isotherm
What is Contour ?

   Contour is line drawn on a map connecting points of equal
height .

  Contour lines (also isolines) connect a series of points of 
equal elevation and are used to illustrate topography on a 
map. 

   They show the height of ground above Mean Sea Level 
(M.S.L.) in either feet or meters and can be drawn at any 
desired interval. 
Final review  contour
Description :

Demonstration of contour lines formation :

  The demonstration will show the interactive 
changes of contour values and its views. 

   We are going to generate the contour lines 
from varying heat values , dynamically.
             


        Matplotlib 
      3 Dimensional Contour View Library
Data Flow Diagram For Generating 3D Contour From Heat Sensor Values




                           Convert analog to
Heat Sensor Analog         digital value
      Value




                                                Store the digital
                                                values into the file




                          Convert Heat values
                          from the File as                             Generate 3D
                          contour levels                                 contour
             


          Arduino 
                   Embedded Board
Arduino Board At Mega 8 
Demonstration of contour lines formation by the following 
 Varything heat temperatures:

  * Room Temperature

  * Body Temparature

  * Boil Temperature

  * Ice Temperature
Contour Lines In 3D
Filled Contour  In 3D
Demo . . . !
 
What is Isotherm ?



   An isotherm ( meaning 'heat') is a line that connects 
points on a map that have the same temperature.

  Therefore, all points through which an isotherm 
passes have the same temperatures at the time 
indicated.
What is My Project ?




     My Project is going to create the isotherm
lines, which will be plot on India Cdat Map.

     We have 4 processes to do this . . .
       .
             


            CDAT 
             Climate Data Analysis Tool
Data Flow Diagram For Generating Isothermal Lines From Google Temperature




     Google                 Web Scraping
     Temperature              Program
     Values




                          Store the Google
                          Temperature Values
                          into the File




                           Draw Isothermal             Isothermal Lines
                           Lines from the                On Cdat Map
                           File Values
Process 1:



  1.1    WebScrape the current temperature and 
 barometer (millibar) of all over cities in India and 
 its surroundings countries from the Internet.
        (http://timeanddate.com/weather/india)

 1.2 Store the city name, temperature, millibar 
 into the file.
Final review  contour
Process 2:



2.1 Combine the temperature and mb values with 
latitude and longitude of corresponding cities, which 
is already collected info file.

2.2  Make decision and covert latitude into 4 
intervals & longitude into 5 intervals
Lat ­ 4 & Lon ­ 5 Intervals
Process 3:



3.1  Create the binary iso.nc file which contains 
current temperature values along with lat & lon. 


3.2  Move the “iso.nc” to the cdat location in our 
system.
Process 4:



4.1  Run the “isotherm.py” to create our isolines on 
cdat India Map. 


4.2  E­Mail to us with the attachment of the output 
image, which is created by “isotherm.py”
To automate all the 4 processes
      we may use “crontab” 
to get isotherm update on India 
    for every one hour or . . .
Before going to Demo . . .
 On 4 th & 5 th April 2010
         isotherm
     lines on India 
               4.15 pm
  4.47 pm
7 pm
  7.26pm
 8.25 pm
 9.52 pm
 10.22 pm
 11.45 pm
 11 am
 12 pm
 11.47 pm
 8 am
 8.45 am
 9 am
 10 pm
 10 pm
 0.15 am
 1.15 am
 9.40 am
VCS Add­On ( Plug­in )
                 To 
              CDAT
CDAT User :


CDAT have Static Isolines.

Generally user can't create their own isolines in 
cdat map.

They can set only levels on isolines.
Iso Lines Over India Map
levels = [10,20,30]
My Add-on
is going to create our own isolines on
cdat map.

Making cdat isolines as dynamic one.
My Correction
         In
CDAT India Map Region
Our Indian Political Map wrongly depicted in CDAT as below
1) Corrected the Pakistan part , which belongs to India


2) Corrected the part of the land which is occupied by the 
Chinese in the state of jammu and kashmir




   While asking help from Mr.Charles Doutriaux [ CDAT ­ 
Developer ] regarding edit map in cdat, he gave the source 
data of cdat world map in .shp binary file.
CDAT  Corrected India Map
Demo . . . !
 
What are the Uses of Isotherm ?

      Isotherms are used to find regions with 

         * Warm air advection    
         * Cold air advection 
         * Short waves
         * Temperature gradient boundaries    and 
         * Instability zones.
Applications :



 

  By the visualization of Isothermal lines on map, we can 
analyses and obtain the temperature and pressure 
values.

    Using this we can analysis/predict the climate changes.

      
Performance Of The System
1. Isothermal lines

    • Automate the webscraping the web page which contains 
the current temperature of all the cities in India
    • Dynamic Isotherm lines over CDAT India map
    • Automate the email sending with the output image
    • Automate all the process

    • By continuous study of this isotherm lines over on CDAT 
India map , we can analysis the climate.

    • This program modules is added as vcsaddon of cdat5.2 
( cdat plug­in ).

    
Performance Of The System

2. Heat values to contour conversion


    • Sensing the current heat temperature using heat sensor 
and convert it to equivalent digital value using arduino board.

    • Convert this digital heat value into contour levels and 
viewing it by 3 dimensional.

    • So that we can visualize the heat range in terms of 
contour.


     
  Limitation Of The System

    We have some limitations in this system. we can not break 
this limitations right now.

    • We can not plot any city temperature other than 4 intervals 
of latitude and 5 intervals of longitude.

    • we can not plot the isolines as more curved contour.

    • Isolines should be raster lines only.Can not modify it.

    • To remove surrounding isolines around India outline region, 
we need more current temperature data from those region.
Unit Testing

Unit Testing In Isotherm Lines :

        By applying unit test on generating isotherm lines over 
India Map is easy to track the whole system.

    It identifies whether the system have installed all the 
needed packages to run this program or not, the system is 
connected with Internet or not, the output is generated or not 
and Gmail account is valid or not.

    By this way, unit test is applied on this project.
Unit Testing

Unit Testing In Heat Contour :

            By applying unit test on heat contour generation is easy 
to track the whole system.

   It identifies whether the system have installed all the needed 
packages or not,arduino environment is working or not, the 3D 
contour input file is generated or not and the final output is
generated or not.

    By this way, unit test is applied on this project.
  Future Enhancements

    In Future have to,

    • Remove the unwanted isolines surrounded by continents.

    • Change the latitude and longitude range by very small 
intervals. Say for eg, make latitude and longitude intervals by 
one unit.

    • Make the smooth isolines in CDAT as plugin.




     
    Conclusion

      In this project, We have proposed an application that makes 
use of Hardware unit and softwares to provide contour 
visualization changes with respect to dynamic heat temperature
Interactively
     we can generate the current isotherm lines and plot over the 
India map.

   By this way, we can study and analysis the isotherm lines on 
India map continuously

   So that we can understand the climate changes in our 
country.
    THANK YOU

Mais conteúdo relacionado

Destaque

Agriculture in ahmednagar
Agriculture in ahmednagarAgriculture in ahmednagar
Agriculture in ahmednagarAditya Devadhe
 
Hilly area settlements in Uttarakhand
Hilly area settlements in UttarakhandHilly area settlements in Uttarakhand
Hilly area settlements in UttarakhandKumar Snehansu
 
BBA review of basic terms , important for VIVA
BBA review of basic terms , important for VIVA BBA review of basic terms , important for VIVA
BBA review of basic terms , important for VIVA Gunjan Pronoto
 
Asian Architecture Presentation Slides
Asian Architecture Presentation SlidesAsian Architecture Presentation Slides
Asian Architecture Presentation Slideshuiyuteoh
 
CONTOUR CRAFTING TECHNOLOGY
CONTOUR CRAFTING TECHNOLOGYCONTOUR CRAFTING TECHNOLOGY
CONTOUR CRAFTING TECHNOLOGYRahul Gande
 
Powerful powerpoint presentation
Powerful powerpoint presentationPowerful powerpoint presentation
Powerful powerpoint presentationAsim Siddiqui
 
Construction Challenges For Bridges In Hilly Areas
Construction Challenges For Bridges In Hilly AreasConstruction Challenges For Bridges In Hilly Areas
Construction Challenges For Bridges In Hilly AreasShantanu Patil
 
Presentation on Refrigerators
Presentation on RefrigeratorsPresentation on Refrigerators
Presentation on RefrigeratorsParesh Gupta
 
Online shopping report-6 month project
Online shopping report-6 month projectOnline shopping report-6 month project
Online shopping report-6 month projectGinne yoffe
 
BBA Project Report
BBA Project ReportBBA Project Report
BBA Project ReportPankaj Kumar
 
Case study/ Literature of a School
Case study/ Literature of a SchoolCase study/ Literature of a School
Case study/ Literature of a SchoolSarthak Kaura
 
Report Writing - Conclusions & Recommendations sections
Report Writing - Conclusions & Recommendations sectionsReport Writing - Conclusions & Recommendations sections
Report Writing - Conclusions & Recommendations sectionsSherrie Lee
 

Destaque (18)

Agriculture in ahmednagar
Agriculture in ahmednagarAgriculture in ahmednagar
Agriculture in ahmednagar
 
Hilly area settlements in Uttarakhand
Hilly area settlements in UttarakhandHilly area settlements in Uttarakhand
Hilly area settlements in Uttarakhand
 
BBA review of basic terms , important for VIVA
BBA review of basic terms , important for VIVA BBA review of basic terms , important for VIVA
BBA review of basic terms , important for VIVA
 
Asian Architecture Presentation Slides
Asian Architecture Presentation SlidesAsian Architecture Presentation Slides
Asian Architecture Presentation Slides
 
Space Hotel Design
Space Hotel DesignSpace Hotel Design
Space Hotel Design
 
CONTOUR CRAFTING TECHNOLOGY
CONTOUR CRAFTING TECHNOLOGYCONTOUR CRAFTING TECHNOLOGY
CONTOUR CRAFTING TECHNOLOGY
 
Space hotel eng_1
Space hotel eng_1Space hotel eng_1
Space hotel eng_1
 
Powerful powerpoint presentation
Powerful powerpoint presentationPowerful powerpoint presentation
Powerful powerpoint presentation
 
Construction Challenges For Bridges In Hilly Areas
Construction Challenges For Bridges In Hilly AreasConstruction Challenges For Bridges In Hilly Areas
Construction Challenges For Bridges In Hilly Areas
 
Viva questions
Viva questionsViva questions
Viva questions
 
Vernacular hill
Vernacular hillVernacular hill
Vernacular hill
 
Presentation on Refrigerators
Presentation on RefrigeratorsPresentation on Refrigerators
Presentation on Refrigerators
 
Onlineshopping
OnlineshoppingOnlineshopping
Onlineshopping
 
Online shopping report-6 month project
Online shopping report-6 month projectOnline shopping report-6 month project
Online shopping report-6 month project
 
BBA Project Report
BBA Project ReportBBA Project Report
BBA Project Report
 
Site Analysis
Site AnalysisSite Analysis
Site Analysis
 
Case study/ Literature of a School
Case study/ Literature of a SchoolCase study/ Literature of a School
Case study/ Literature of a School
 
Report Writing - Conclusions & Recommendations sections
Report Writing - Conclusions & Recommendations sectionsReport Writing - Conclusions & Recommendations sections
Report Writing - Conclusions & Recommendations sections
 

Semelhante a Final review contour

Contour Ilugc Demo Presentation
Contour Ilugc Demo PresentationContour Ilugc Demo Presentation
Contour Ilugc Demo PresentationArulalan T
 
Estimation of Cooling Load Calculations for a Commercial Complex
Estimation of Cooling Load Calculations for a Commercial ComplexEstimation of Cooling Load Calculations for a Commercial Complex
Estimation of Cooling Load Calculations for a Commercial Complexijtsrd
 
A Review on Thermal Aware Optimization of Three Dimensional Integrated Circui...
A Review on Thermal Aware Optimization of Three Dimensional Integrated Circui...A Review on Thermal Aware Optimization of Three Dimensional Integrated Circui...
A Review on Thermal Aware Optimization of Three Dimensional Integrated Circui...IJMER
 
Application of Pinch Technology in Refrigerator Condenser Optimization by Usi...
Application of Pinch Technology in Refrigerator Condenser Optimization by Usi...Application of Pinch Technology in Refrigerator Condenser Optimization by Usi...
Application of Pinch Technology in Refrigerator Condenser Optimization by Usi...ijtsrd
 
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCsA Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCsVLSICS Design
 
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCsA Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCsVLSICS Design
 
The Role of CFD in Real Life Designs
The Role of CFD in Real Life DesignsThe Role of CFD in Real Life Designs
The Role of CFD in Real Life DesignsSOLIDWORKS
 
Electro Thermal IC Simulation With Saber
Electro Thermal  IC Simulation  With  SaberElectro Thermal  IC Simulation  With  Saber
Electro Thermal IC Simulation With Saberdomnitei
 
Robert_Tanner_Temperature_Distribution
Robert_Tanner_Temperature_DistributionRobert_Tanner_Temperature_Distribution
Robert_Tanner_Temperature_DistributionRobert Tanner
 
Thermal Resistance Modelling with SimScale
Thermal Resistance Modelling with SimScaleThermal Resistance Modelling with SimScale
Thermal Resistance Modelling with SimScaleSimScale
 
CAD theory presentation.pptx .
CAD theory presentation.pptx                .CAD theory presentation.pptx                .
CAD theory presentation.pptx .Athar739197
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
465 senior lab final report
465 senior lab final report465 senior lab final report
465 senior lab final reportBrian Kraft
 
Application of thermal error in machine tools based on Dynamic Bayesian Network
Application of thermal error in machine tools based on Dynamic Bayesian NetworkApplication of thermal error in machine tools based on Dynamic Bayesian Network
Application of thermal error in machine tools based on Dynamic Bayesian NetworkIJRES Journal
 
Mobile and Web Applications for Sensing Hazardous Room Temperature using Wire...
Mobile and Web Applications for Sensing Hazardous Room Temperature using Wire...Mobile and Web Applications for Sensing Hazardous Room Temperature using Wire...
Mobile and Web Applications for Sensing Hazardous Room Temperature using Wire...Mysa Vijay
 
IRJET- Effect of Pin Fin Geometry on Performance of Heat Sink
IRJET- Effect of Pin Fin Geometry on Performance of Heat SinkIRJET- Effect of Pin Fin Geometry on Performance of Heat Sink
IRJET- Effect of Pin Fin Geometry on Performance of Heat SinkIRJET Journal
 
SimScale to IES for Building Simulation
SimScale to IES for Building SimulationSimScale to IES for Building Simulation
SimScale to IES for Building SimulationSimScale
 
ME209 Homework #2 1- Write a program to input .docx
ME209     Homework #2 1- Write a program to input .docxME209     Homework #2 1- Write a program to input .docx
ME209 Homework #2 1- Write a program to input .docxandreecapon
 

Semelhante a Final review contour (20)

Contour Ilugc Demo Presentation
Contour Ilugc Demo PresentationContour Ilugc Demo Presentation
Contour Ilugc Demo Presentation
 
Estimation of Cooling Load Calculations for a Commercial Complex
Estimation of Cooling Load Calculations for a Commercial ComplexEstimation of Cooling Load Calculations for a Commercial Complex
Estimation of Cooling Load Calculations for a Commercial Complex
 
A Review on Thermal Aware Optimization of Three Dimensional Integrated Circui...
A Review on Thermal Aware Optimization of Three Dimensional Integrated Circui...A Review on Thermal Aware Optimization of Three Dimensional Integrated Circui...
A Review on Thermal Aware Optimization of Three Dimensional Integrated Circui...
 
Application of Pinch Technology in Refrigerator Condenser Optimization by Usi...
Application of Pinch Technology in Refrigerator Condenser Optimization by Usi...Application of Pinch Technology in Refrigerator Condenser Optimization by Usi...
Application of Pinch Technology in Refrigerator Condenser Optimization by Usi...
 
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCsA Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
 
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCsA Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
A Novel Methodology for Thermal Aware Silicon Area Estimation for 2D & 3D MPSoCs
 
The Role of CFD in Real Life Designs
The Role of CFD in Real Life DesignsThe Role of CFD in Real Life Designs
The Role of CFD in Real Life Designs
 
Electro Thermal IC Simulation With Saber
Electro Thermal  IC Simulation  With  SaberElectro Thermal  IC Simulation  With  Saber
Electro Thermal IC Simulation With Saber
 
Robert_Tanner_Temperature_Distribution
Robert_Tanner_Temperature_DistributionRobert_Tanner_Temperature_Distribution
Robert_Tanner_Temperature_Distribution
 
Thermal Resistance Modelling with SimScale
Thermal Resistance Modelling with SimScaleThermal Resistance Modelling with SimScale
Thermal Resistance Modelling with SimScale
 
CAD theory presentation.pptx .
CAD theory presentation.pptx                .CAD theory presentation.pptx                .
CAD theory presentation.pptx .
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)
 
465 senior lab final report
465 senior lab final report465 senior lab final report
465 senior lab final report
 
Application of thermal error in machine tools based on Dynamic Bayesian Network
Application of thermal error in machine tools based on Dynamic Bayesian NetworkApplication of thermal error in machine tools based on Dynamic Bayesian Network
Application of thermal error in machine tools based on Dynamic Bayesian Network
 
Mobile and Web Applications for Sensing Hazardous Room Temperature using Wire...
Mobile and Web Applications for Sensing Hazardous Room Temperature using Wire...Mobile and Web Applications for Sensing Hazardous Room Temperature using Wire...
Mobile and Web Applications for Sensing Hazardous Room Temperature using Wire...
 
02.softwareengr.ppt
02.softwareengr.ppt02.softwareengr.ppt
02.softwareengr.ppt
 
IRJET- Effect of Pin Fin Geometry on Performance of Heat Sink
IRJET- Effect of Pin Fin Geometry on Performance of Heat SinkIRJET- Effect of Pin Fin Geometry on Performance of Heat Sink
IRJET- Effect of Pin Fin Geometry on Performance of Heat Sink
 
Tele immersion
Tele immersionTele immersion
Tele immersion
 
SimScale to IES for Building Simulation
SimScale to IES for Building SimulationSimScale to IES for Building Simulation
SimScale to IES for Building Simulation
 
ME209 Homework #2 1- Write a program to input .docx
ME209     Homework #2 1- Write a program to input .docxME209     Homework #2 1- Write a program to input .docx
ME209 Homework #2 1- Write a program to input .docx
 

Mais de Arulalan T

Climate Data Operators (CDO)
Climate Data Operators (CDO)Climate Data Operators (CDO)
Climate Data Operators (CDO)Arulalan T
 
CDAT - graphics - vcs - xmgrace - Introduction
CDAT - graphics - vcs - xmgrace - Introduction CDAT - graphics - vcs - xmgrace - Introduction
CDAT - graphics - vcs - xmgrace - Introduction Arulalan T
 
CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction
CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction
CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction Arulalan T
 
CDAT - cdms numpy arrays - Introduction
CDAT - cdms numpy arrays - IntroductionCDAT - cdms numpy arrays - Introduction
CDAT - cdms numpy arrays - IntroductionArulalan T
 
Python an-intro-python-month-2013
Python an-intro-python-month-2013Python an-intro-python-month-2013
Python an-intro-python-month-2013Arulalan T
 
Python an-intro v2
Python an-intro v2Python an-intro v2
Python an-intro v2Arulalan T
 
Thermohaline Circulation & Climate Change
Thermohaline Circulation & Climate ChangeThermohaline Circulation & Climate Change
Thermohaline Circulation & Climate ChangeArulalan T
 
Python an-intro - odp
Python an-intro - odpPython an-intro - odp
Python an-intro - odpArulalan T
 
Testing in-python-and-pytest-framework
Testing in-python-and-pytest-frameworkTesting in-python-and-pytest-framework
Testing in-python-and-pytest-frameworkArulalan T
 
Pygrib documentation
Pygrib documentationPygrib documentation
Pygrib documentationArulalan T
 
Lesson1 python an introduction
Lesson1 python an introductionLesson1 python an introduction
Lesson1 python an introductionArulalan T
 
Python An Intro
Python An IntroPython An Intro
Python An IntroArulalan T
 
Contour Ilugc Demo Presentation
Contour Ilugc Demo Presentation Contour Ilugc Demo Presentation
Contour Ilugc Demo Presentation Arulalan T
 
Edit/correct India Map In Cdat Documentation - With Edited World Map Data
Edit/correct India Map In Cdat  Documentation -  With Edited World Map Data Edit/correct India Map In Cdat  Documentation -  With Edited World Map Data
Edit/correct India Map In Cdat Documentation - With Edited World Map Data Arulalan T
 
matplotlib-installatin-interactive-contour-example-guide
matplotlib-installatin-interactive-contour-example-guidematplotlib-installatin-interactive-contour-example-guide
matplotlib-installatin-interactive-contour-example-guideArulalan T
 
"contour.py" module
"contour.py" module"contour.py" module
"contour.py" moduleArulalan T
 
contour analysis and visulaization documetation -1
contour analysis and visulaization documetation -1contour analysis and visulaization documetation -1
contour analysis and visulaization documetation -1Arulalan T
 
Automatic B Day Remainder Program
Automatic B Day Remainder ProgramAutomatic B Day Remainder Program
Automatic B Day Remainder ProgramArulalan T
 

Mais de Arulalan T (20)

wgrib2
wgrib2wgrib2
wgrib2
 
Climate Data Operators (CDO)
Climate Data Operators (CDO)Climate Data Operators (CDO)
Climate Data Operators (CDO)
 
CDAT - graphics - vcs - xmgrace - Introduction
CDAT - graphics - vcs - xmgrace - Introduction CDAT - graphics - vcs - xmgrace - Introduction
CDAT - graphics - vcs - xmgrace - Introduction
 
CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction
CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction
CDAT - cdms2, maskes, cdscan, cdutil, genutil - Introduction
 
CDAT - cdms numpy arrays - Introduction
CDAT - cdms numpy arrays - IntroductionCDAT - cdms numpy arrays - Introduction
CDAT - cdms numpy arrays - Introduction
 
Python an-intro-python-month-2013
Python an-intro-python-month-2013Python an-intro-python-month-2013
Python an-intro-python-month-2013
 
Python an-intro v2
Python an-intro v2Python an-intro v2
Python an-intro v2
 
Thermohaline Circulation & Climate Change
Thermohaline Circulation & Climate ChangeThermohaline Circulation & Climate Change
Thermohaline Circulation & Climate Change
 
Python an-intro - odp
Python an-intro - odpPython an-intro - odp
Python an-intro - odp
 
Testing in-python-and-pytest-framework
Testing in-python-and-pytest-frameworkTesting in-python-and-pytest-framework
Testing in-python-and-pytest-framework
 
Pygrib documentation
Pygrib documentationPygrib documentation
Pygrib documentation
 
Lesson1 python an introduction
Lesson1 python an introductionLesson1 python an introduction
Lesson1 python an introduction
 
Python An Intro
Python An IntroPython An Intro
Python An Intro
 
Contour Ilugc Demo Presentation
Contour Ilugc Demo Presentation Contour Ilugc Demo Presentation
Contour Ilugc Demo Presentation
 
Edit/correct India Map In Cdat Documentation - With Edited World Map Data
Edit/correct India Map In Cdat  Documentation -  With Edited World Map Data Edit/correct India Map In Cdat  Documentation -  With Edited World Map Data
Edit/correct India Map In Cdat Documentation - With Edited World Map Data
 
Nomography
NomographyNomography
Nomography
 
matplotlib-installatin-interactive-contour-example-guide
matplotlib-installatin-interactive-contour-example-guidematplotlib-installatin-interactive-contour-example-guide
matplotlib-installatin-interactive-contour-example-guide
 
"contour.py" module
"contour.py" module"contour.py" module
"contour.py" module
 
contour analysis and visulaization documetation -1
contour analysis and visulaization documetation -1contour analysis and visulaization documetation -1
contour analysis and visulaization documetation -1
 
Automatic B Day Remainder Program
Automatic B Day Remainder ProgramAutomatic B Day Remainder Program
Automatic B Day Remainder Program
 

Último

Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAshyamraj55
 
Building Your Own AI Instance (TBLC AI )
Building Your Own AI Instance (TBLC AI )Building Your Own AI Instance (TBLC AI )
Building Your Own AI Instance (TBLC AI )Brian Pichman
 
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdfIaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdfDaniel Santiago Silva Capera
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxMatsuo Lab
 
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDEADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDELiveplex
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6DianaGray10
 
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...Aggregage
 
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019IES VE
 
How Accurate are Carbon Emissions Projections?
How Accurate are Carbon Emissions Projections?How Accurate are Carbon Emissions Projections?
How Accurate are Carbon Emissions Projections?IES VE
 
Machine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfMachine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfAijun Zhang
 
Artificial Intelligence & SEO Trends for 2024
Artificial Intelligence & SEO Trends for 2024Artificial Intelligence & SEO Trends for 2024
Artificial Intelligence & SEO Trends for 2024D Cloud Solutions
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioChristian Posta
 
VoIP Service and Marketing using Odoo and Asterisk PBX
VoIP Service and Marketing using Odoo and Asterisk PBXVoIP Service and Marketing using Odoo and Asterisk PBX
VoIP Service and Marketing using Odoo and Asterisk PBXTarek Kalaji
 
Designing A Time bound resource download URL
Designing A Time bound resource download URLDesigning A Time bound resource download URL
Designing A Time bound resource download URLRuncy Oommen
 
Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1DianaGray10
 
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve DecarbonizationUsing IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve DecarbonizationIES VE
 
UiPath Studio Web workshop series - Day 7
UiPath Studio Web workshop series - Day 7UiPath Studio Web workshop series - Day 7
UiPath Studio Web workshop series - Day 7DianaGray10
 
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1DianaGray10
 

Último (20)

201610817 - edge part1
201610817 - edge part1201610817 - edge part1
201610817 - edge part1
 
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
 
Building Your Own AI Instance (TBLC AI )
Building Your Own AI Instance (TBLC AI )Building Your Own AI Instance (TBLC AI )
Building Your Own AI Instance (TBLC AI )
 
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdfIaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptx
 
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDEADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6
 
20230104 - machine vision
20230104 - machine vision20230104 - machine vision
20230104 - machine vision
 
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
 
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
 
How Accurate are Carbon Emissions Projections?
How Accurate are Carbon Emissions Projections?How Accurate are Carbon Emissions Projections?
How Accurate are Carbon Emissions Projections?
 
Machine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfMachine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdf
 
Artificial Intelligence & SEO Trends for 2024
Artificial Intelligence & SEO Trends for 2024Artificial Intelligence & SEO Trends for 2024
Artificial Intelligence & SEO Trends for 2024
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and Istio
 
VoIP Service and Marketing using Odoo and Asterisk PBX
VoIP Service and Marketing using Odoo and Asterisk PBXVoIP Service and Marketing using Odoo and Asterisk PBX
VoIP Service and Marketing using Odoo and Asterisk PBX
 
Designing A Time bound resource download URL
Designing A Time bound resource download URLDesigning A Time bound resource download URL
Designing A Time bound resource download URL
 
Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1
 
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve DecarbonizationUsing IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
Using IESVE for Loads, Sizing and Heat Pump Modeling to Achieve Decarbonization
 
UiPath Studio Web workshop series - Day 7
UiPath Studio Web workshop series - Day 7UiPath Studio Web workshop series - Day 7
UiPath Studio Web workshop series - Day 7
 
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
 

Final review contour