Differences between revisions 2 and 14 (spanning 12 versions)
Revision 2 as of 2010-06-14 16:07:52
Size: 4591
Comment:
Revision 14 as of 2010-10-25 08:44:17
Size: 4065
Comment:
Deletions are marked like this. Additions are marked like this.
Line 10: Line 10:
== Lectures ==
Line 12: Line 11:
 * [[http://wiki.zmaw.de/lehre/OpenSource2010|Open Source Scripting for Geo-Scientific Data Processing and Analysis]] by LarsKaleschke <<TableOfContents(2)>>
Line 14: Line 13:
== Documentation ==
Line 16: Line 14:
 * http://www.python.org/doc/ == ZMAW Settings ==

SNOW, SQUALL:
{{{
module load python
}}}

Etch32 (Desktop):
{{{
module load Python/2.6.2
}}}

[[/ZMAW|More ZMAW specific settings]]

== Courses ==

 * [[http://wiki.zmaw.de/lehre/OpenSource2010|Open Source Scripting for Geo-Scientific Data Processing and Analysis]] by LarsKaleschke '''KlimaCampus Lecture'''
 
= Documentation and further reading =

 * http://www.python.org/doc/ Standard documentation
Line 20: Line 38:
 * [[http://software-carpentry.org/|Software Carpentry]]
Line 21: Line 40:
== Modules for Scientific Computing and Visualization ==
Line 23: Line 41:
=== SciPy/NumPy === = Modules for Scientific Computing and Visualization =

== SciPy/NumPy ==
Line 27: Line 48:
Line 30: Line 52:
To enable Basemap (on ZMAW Linux ia32/x64 and solaris10) you have to type before starting Python2.4.4:
{{{
module load Python/2.4.4
}}}
or to start Python2.6.2 (recommended):
{{{
module load R/2.7.0
module load Python/2.6.2
}}}

In Python you can import the Basemap module by
Import the Basemap module
Line 44: Line 56:
=== GDAL ===
== GDAL ==
Line 46: Line 60:
 * [[http://wiki.zmaw.de/ifm/gdal|ZMAW GDAL]]
Line 47: Line 62:
To enable GDAL use
{{{
module load gdal
}}}
== PyNGL PyNio ==
Line 52: Line 64:
{{{
from osgeo import gdal
}}}


=== PyNGL PyNio ===
Line 61: Line 67:
To enable PyNGL (on ZMAW Linux ia32/x64 and solaris10) you have to type
{{{
module load PyNGL/1.2.0
}}}

Please note, that Nio should be on the top of the list, e.g.

{{{
import Nio
from osgeo import gdal
import pylab as pl
}}}


=== Python Interface to GrADS ===
== Python Interface to GrADS ==
Line 77: Line 69:
=== RPy === == RPy ==
Line 80: Line 72:
=== F2PY: Fortran to Python interface generator === == F2PY: Fortran to Python interface generator ==
Line 82: Line 74:
Calling Fortran code from python is easy! Create a file {{{hello.f}}}:
{{{
C File hello.f
      subroutine foo (a)
      integer a
      print*, "Hello from Fortran!"
      print*, "a=",a
      end
}}}
Calling Fortran code from python is easy!
Line 92: Line 76:
Run
{{{f2py -c -m hello hello.f}}}
[[/F2PY|Fortran to Python]]
Line 95: Line 78:
Now in IPython try:
{{{
In [1]: import hello
In [2]: hello.foo(4)
 Hello from Fortran!
 a= 4
}}}

Example taken from

 * [[http://cens.ioc.ee/projects/f2py2e/|F2PY: Fortran to Python interface generator]]

== Topical Modules ==
= Topical Modules =
Line 112: Line 83:
Line 115: Line 85:
= Python and Climate =
 
 * [[http://maths.ucd.ie/~rca/climt/|CliMT: An object-oriented Climate Modeling and diagnostics Toolkit]]
 * [[http://www2-pcmdi.llnl.gov/cdat|Climate Data Analysis Tools (CDAT)]]
 * [[http://code.google.com/p/pyccsm/|pyccsm A Python version of the CCSM coupler]]
Line 116: Line 91:
=== Installation in the home directory ===
The seawater module is installed on the ZMAW machines for Python 2.6. Use
{{{
module load Python/2.6.2
}}}
to set up the environment. In the following it is explained how to install the module for the case if it would be not available or if a different version of python has to be used.

Installation of module {{{seawater}}} in directory {{{~/modules}}}
{{{
python setup.py install --prefix=~/modules/
}}}

Usage
{{{
import sys,os
home=os.getenv('HOME')
genpath=home+'/modules/lib/python2.4/site-packages/'
if not sys.path.__contains__(genpath):
    sys.path.append(genpath)
from seawater import *
}}}

== Download ==
= Download (try this at home) =
Line 149: Line 102:

= Literature =
 
 * Python Scripting for Computational Science, Hans Petter Langtangen, Springer (available in the ZMAW library)
 * Matplotlib for Python Developers - Build remarkable publication quality plots the easy way, Sandro Tosi, Packt Publishing, Birmingham - Mumbai, 2009
 * [[http://geosci.uchicago.edu/~rtp1/ClimateBook/ClimateBook.html|Principles of Planetary Climate (RAYMOND T. PIERREHUMBERT)]] includes a large collection of Python examples

Python at KlimaCampus

This page shall be a central help for ZMAW/KlimaCampus users of Python. Contact LarsKaleschke for permission to edit this page. Please help to fill this page with useful information about Python for climate research and data analysis.

ZMAW Settings

SNOW, SQUALL:

module load python

Etch32 (Desktop):

module load Python/2.6.2

More ZMAW specific settings

Courses

Documentation and further reading

Modules for Scientific Computing and Visualization

SciPy/NumPy

pylab

Import the Basemap module

from mpl_toolkits.basemap import Basemap

GDAL

PyNGL PyNio

Python Interface to GrADS

RPy

F2PY: Fortran to Python interface generator

Calling Fortran code from python is easy!

Fortran to Python

Topical Modules

More topical software can be found at http://scipy.org/Topical_Software

Python and Climate

Download (try this at home)

A basic system for scientific computing consists of Python, ipython, numpy/scipy, pylab, and an editor of your choice

The python(x,y) distribution contains all that above.

Literature

  • Python Scripting for Computational Science, Hans Petter Langtangen, Springer (available in the ZMAW library)
  • Matplotlib for Python Developers - Build remarkable publication quality plots the easy way, Sandro Tosi, Packt Publishing, Birmingham - Mumbai, 2009
  • Principles of Planetary Climate (RAYMOND T. PIERREHUMBERT) includes a large collection of Python examples

IfmWiki: FrontPage/Python (last edited 2010-10-25 08:44:17 by LarsKaleschke)