Differences between revisions 3 and 5 (spanning 2 versions)
Revision 3 as of 2010-06-14 19:49:56
Size: 4959
Comment:
Revision 5 as of 2010-06-22 15:57:10
Size: 4309
Comment:
Deletions are marked like this. Additions are marked like this.
Line 13: Line 13:
== Lectures == == KlimaCampus Lectures ==
Line 17: Line 17:
== Documentation == == ZMAW Setting ==
Line 19: Line 19:
 * http://www.python.org/doc/
 * [[http://www.cfa.harvard.edu/~jbattat/computer/python/science/idl-numpy.html|NumPy for IDL users]]
 * [[http://www.scipy.org/NumPy_for_Matlab_Users|NumPy for Matlab users]]
 * [[http://www.tau.ac.il/~kineret/amit/scipy_tutorial/|SciPy tutorial]]

== Modules for Scientific Computing and Visualization ==

=== SciPy/NumPy ===
 * http://www.scipy.org/

=== pylab ===
 * [[http://matplotlib.sourceforge.net/|Matplotlib/pylab]] Plotting functions with a high degree of Matlab compatibility
 * [[http://matplotlib.sourceforge.net/basemap/doc/html/]] Matplotlib Basemap

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):
Python2.6.2 requires
Line 43: Line 25:
In Python you can import the Basemap module by
== Documentation and further reading ==

 * http://www.python.org/doc/ Standard documentation
 * [[http://www.cfa.harvard.edu/~jbattat/computer/python/science/idl-numpy.html|NumPy for IDL users]]
 * [[http://www.scipy.org/NumPy_for_Matlab_Users|NumPy for Matlab users]]
 * [[http://www.tau.ac.il/~kineret/amit/scipy_tutorial/|SciPy tutorial]]
 * [[http://software-carpentry.org/|Software Carpentry]]


== Modules for Scientific Computing and Visualization ==

=== SciPy/NumPy ===

 * http://www.scipy.org/

=== pylab ===

 * [[http://matplotlib.sourceforge.net/|Matplotlib/pylab]] Plotting functions with a high degree of Matlab compatibility
 * [[http://matplotlib.sourceforge.net/basemap/doc/html/]] Matplotlib Basemap

Import the Basemap module
Line 47: Line 50:
Line 61: Line 65:
Line 85: Line 90:
Calling Fortran code from python is easy! Create a file {{{hello.f}}}: Calling Fortran code from python is easy!

[[/F2PY|Fortran to Python]]

Create a file {{{hello.f}}}:
Line 117: Line 126:

=== 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 *
}}}
Line 146: Line 132:
== Download == == Download (try this at home) ==

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.

KlimaCampus Lectures

ZMAW Setting

Python2.6.2 requires

module load R/2.7.0
module load Python/2.6.2

Documentation and further reading

Modules for Scientific Computing and Visualization

SciPy/NumPy

pylab

Import the Basemap module

from mpl_toolkits.basemap import Basemap

GDAL

To enable GDAL use

module load gdal

from osgeo import gdal

PyNGL PyNio

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

RPy

F2PY: Fortran to Python interface generator

Calling Fortran code from python is easy!

Fortran to Python

Create a file hello.f:

C File hello.f
      subroutine foo (a)
      integer a
      print*, "Hello from Fortran!"
      print*, "a=",a
      end

Run f2py -c -m hello hello.f

Now in IPython try:

In [1]: import hello
In [2]: hello.foo(4)
 Hello from Fortran!
 a=           4

Example taken from

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.

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