# Add general information below

FILENAME:

DESCRIPTION:

# for python objects naming conventions and style see PEP8: # http://www.python.org/dev/peps/pep-0008/

# If you use this file as a importable module for other programs than # the information below is useful to describe author = "A. U. Thor" version = "0.0" date = "0000/00/00"

import sys import os from optparse import OptionParser import Nio import numpy as np import matplotlib.pyplot as plt import pdb import cPickle as cP

# below is a simple class that provides some convenience functions class NcReader:

# "parse_options" is meant to parse command line arguments and options # there can be unknown number of arguments, but options are predefined # mandatory arguments are actually options

def parse_options():

# It is a good practice to separate code execution and objects like classes # and functions # Main function is used for executing python code as a standalone program # def main():

# The following structure is useful if # the code to be run as a standalone program AND a module which # can be imported in other python scripts if name == "main":