/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to apps/csv2netcdf/test_stream.py

  • Committer: Suren A. Chilingaryan
  • Date: 2015-02-20 18:27:24 UTC
  • Revision ID: csa@suren.me-20150220182724-ripuszrvwfjgv3d5
Include netcdf exported from ntj

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
import sys
 
3
import timeit
 
4
import logging
 
5
 
 
6
logging.basicConfig(filename='/tmp/args.log',level=logging.DEBUG)
 
7
 
 
8
logging.debug('Number of arguments: ' + str(len(sys.argv)) + 'i arguments.')
 
9
logging.debug('Argument List: ' + str(sys.argv))
 
10
 
 
11
lineno = 0
 
12
for line in sys.stdin:
 
13
    lineno += 1
 
14
    #logging.debug(str(lineno) + line)
 
15