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

Changeset 138

Show
Ignore:
Timestamp:
03/27/08 00:08:15
Author:
cbc
Message:

Fixed hardcoded source and destination paths in findMissing.py.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sodar/trunk/sodar/arrayData.py

    r136 r138  
    1212import formattedData 
    1313import numpy as n 
    14 from numpy import matrix 
    1514import datetime 
    1615 
  • sodar/trunk/sodar/utils/findMissing.py

    r132 r138  
    44Files are presumed organized according to NCCOOS conventions. 
    55""" 
     6 
     7import os 
    68 
    79def findMissing(source, destination): 
     
    1517    Construct difference file tree as list of tuples (source, destination) 
    1618    """ 
    17  
    18     import os 
    19      
    20     source = '/home/cbcoasis/Desktop/sodar' 
    21     destination = '/var/www/html/sodar/plots' 
    2219     
    2320    sourceWalk = os.walk(source) 
     
    6259if __name__ == '__main__': 
    6360    import optparse 
    64     import os 
    6561    from pprint import pprint 
    66  
     62     
    6763    parser = optparse.OptionParser() 
    6864    (values, args) = parser.parse_args()