NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

root/sodar/trunk/sodar/sample.py

Revision 57 (checked in by cbc, 17 years ago)

Fulfill ticket #2: Create sodar package

Line 
1 #!/usr/bin/python
2 """Classes to handle sodar data samples
3
4 Sodar data samples are collected into daily files. Each sample consists of a
5 header followed by an observation for each height.
6 """
7
8 def split():
9     """Split data file into samples"""
10     print "Data file processed."
11
12 def __main():
13     """Process as script from command line"""
14     split()
15
16 if __name__ == "__main__":
17     __main()
Note: See TracBrowser for help on using the browser.