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

Changeset 203

Show
Ignore:
Timestamp:
09/06/08 18:01:13
Author:
cbc
Message:

Fix altitudeIndex in parser (2nd typo) in proc_remtech_rawdata_pa0.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sodar/branches/raw2proc-dev/proc_remtech_rawdata_pa0.py

    r202 r203  
    133133                theta  = math.pi * float(theta) / 180.0 
    134134                radial = float(radial) 
    135                 data['u'][sampleIndex][altitideIndex] = radial * math.sin(theta) 
     135                data['u'][sampleIndex][altitudeIndex] = radial * math.sin(theta) 
    136136                data['v'][sampleIndex][altitudeIndex] = radial * math.cos(theta) 
    137137