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

root/sodar/trunk/sodar/adjustedData.py

Revision 119 (checked in by cbc, 16 years ago)

Fix line endings.

Line 
1 #!/usr/bin/python
2 """
3 Module to handle adjusting sodar data samples for missing data.
4
5 A list of sample data.
6
7 A sample: formattedDataObject[0] -> dictionary
8
9 A sample header: formattedDataObject[0]['header'] -> dictionary
10
11 A sample body: formattedDataObject[0]['body'] -> list of dictionaries
12
13 Altitude data from a sample: formattedDataObject[0]['body'][0] -> dictionary
14 """
15
16 __author__ = 'Chris Calloway'
17 __email__ = 'cbc@unc.edu'
18 __copyright__ = 'Copyright 2007 UNC-CH Department of Marine Science'
19 __license__ = 'GPL2'
20
21 import rawData
22 import numpy as n
23 import datetime
24
25 class AdjustedData(list):
26     pass
Note: See TracBrowser for help on using the browser.