##// END OF EJS Templates
Bug fixed in RTI and Wind Profiler Plots, when data time exceeded the xmax, the new plot generated was overwriting the first one.
Bug fixed in RTI and Wind Profiler Plots, when data time exceeded the xmax, the new plot generated was overwriting the first one.

File last commit:

r169:661bb8af254a
r509:7fe23f0913c9
Show More
CorrelationIO.py
39 lines | 779 B | text/x-python | PythonLexer
'''
Created on 23/01/2012
@author $Author$
@version $Id$
'''
import os, sys
import numpy
import glob
import fnmatch
import time, datetime
path = os.path.split(os.getcwd())[0]
sys.path.append(path)
from Model.JROHeader import *
from Model.Voltage import Voltage
from IO.JRODataIO import JRODataReader
from IO.JRODataIO import JRODataWriter
class CorrelationReader(JRODataReader):#JRODataReader para lectura de correlaciones en archivos HDF5
def __init__(self):
pass
class CorrelationWriter(JRODataWriter):#JRODataWriter para escritura de correlaciones en archivos HDF5
def __init__(self):
pass
def puData(self):
pass
def writeBlock(self):
pass