diff --git a/schainpy/model/io/jroIO_base.py b/schainpy/model/io/jroIO_base.py index 71c2d25..48bdb78 100644 --- a/schainpy/model/io/jroIO_base.py +++ b/schainpy/model/io/jroIO_base.py @@ -574,9 +574,9 @@ class JRODataReader(JRODataIO): return None, None if len(dateList) > 1: - print "[Reading] %d days were found in date range: %s - %s" %(len(dateList), startDate, endDate) + print "[Reading] Data found: total days = %d, date range = %s - %s" %(len(dateList), startDate, endDate) else: - print "[Reading] data was found for the date %s" %(dateList[0]) + print "[Reading] Data found: date = %s" %(dateList[0]) filenameList = [] datetimeList = [] diff --git a/schainpy/model/proc/jroproc_voltage.py b/schainpy/model/proc/jroproc_voltage.py index 81ea1fc..501d32b 100644 --- a/schainpy/model/proc/jroproc_voltage.py +++ b/schainpy/model/proc/jroproc_voltage.py @@ -771,7 +771,7 @@ class ProfileSelector(Operation): Operation.__init__(self) self.profileIndex = 0 - def incIndex(self): + def incProfileIndex(self): self.profileIndex += 1 @@ -856,7 +856,7 @@ class ProfileSelector(Operation): dataOut.profileIndex = self.profileIndex dataOut.flagNoData = False - self.incIndex() + self.incProfileIndex() return True if profileRangeList != None: @@ -871,7 +871,7 @@ class ProfileSelector(Operation): dataOut.profileIndex = self.profileIndex dataOut.flagNoData = False - self.incIndex() + self.incProfileIndex() return True if rangeList != None: @@ -896,7 +896,7 @@ class ProfileSelector(Operation): dataOut.profileIndex = self.profileIndex dataOut.flagNoData = False - self.incIndex() + self.incProfileIndex() break @@ -908,7 +908,7 @@ class ProfileSelector(Operation): dataOut.flagNoData = False dataOut.profileIndex = self.profileIndex - self.incIndex() + self.incProfileIndex() return True