Changeset 1668
- Timestamp:
- 06/11/06 10:32:32 (14 years ago)
- Location:
- TI02-CSML/trunk/csml
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TI02-CSML/trunk/csml/csmllibs/csmldataiface.py
r1594 r1668 11 11 12 12 13 import sys 13 14 import cdms 14 import nappy 15 try: 16 import nappy 17 except ImportError: 18 sys.stdout.write('Could not import NASAAmes interface') 15 19 import string 16 20 import sys -
TI02-CSML/trunk/csml/csmllibs/csmldirectory.py
r1555 r1668 1 1 #!/usr/bin/env python 2 import os 3 import nappy 2 import os,sys 3 try: 4 import nappy 5 except ImportError: 6 sys.stdout.write('Could not import NASAAmes interface') 4 7 import sys 5 8 import string 9 6 10 7 11 class DirectoryTree(object): -
TI02-CSML/trunk/csml/sampleconfig.cfg
r1479 r1668 4 4 5 5 [files] 6 root: ../examples/ 6 7 root: ../Examples/ 7 8 mapping: onetomany 8 9 output:csmlout.xml
Note: See TracChangeset
for help on using the changeset viewer.