##// END OF EJS Templates
Minor changes
Miguel Valdez -
r754:c1673fc8e139
parent child
Show More
@@ -574,9 +574,9 class JRODataReader(JRODataIO):
574 return None, None
574 return None, None
575
575
576 if len(dateList) > 1:
576 if len(dateList) > 1:
577 print "[Reading] %d days were found in date range: %s - %s" %(len(dateList), startDate, endDate)
577 print "[Reading] Data found: total days = %d, date range = %s - %s" %(len(dateList), startDate, endDate)
578 else:
578 else:
579 print "[Reading] data was found for the date %s" %(dateList[0])
579 print "[Reading] Data found: date = %s" %(dateList[0])
580
580
581 filenameList = []
581 filenameList = []
582 datetimeList = []
582 datetimeList = []
@@ -771,7 +771,7 class ProfileSelector(Operation):
771 Operation.__init__(self)
771 Operation.__init__(self)
772 self.profileIndex = 0
772 self.profileIndex = 0
773
773
774 def incIndex(self):
774 def incProfileIndex(self):
775
775
776 self.profileIndex += 1
776 self.profileIndex += 1
777
777
@@ -856,7 +856,7 class ProfileSelector(Operation):
856 dataOut.profileIndex = self.profileIndex
856 dataOut.profileIndex = self.profileIndex
857 dataOut.flagNoData = False
857 dataOut.flagNoData = False
858
858
859 self.incIndex()
859 self.incProfileIndex()
860 return True
860 return True
861
861
862 if profileRangeList != None:
862 if profileRangeList != None:
@@ -871,7 +871,7 class ProfileSelector(Operation):
871 dataOut.profileIndex = self.profileIndex
871 dataOut.profileIndex = self.profileIndex
872 dataOut.flagNoData = False
872 dataOut.flagNoData = False
873
873
874 self.incIndex()
874 self.incProfileIndex()
875 return True
875 return True
876
876
877 if rangeList != None:
877 if rangeList != None:
@@ -896,7 +896,7 class ProfileSelector(Operation):
896 dataOut.profileIndex = self.profileIndex
896 dataOut.profileIndex = self.profileIndex
897 dataOut.flagNoData = False
897 dataOut.flagNoData = False
898
898
899 self.incIndex()
899 self.incProfileIndex()
900
900
901 break
901 break
902
902
@@ -908,7 +908,7 class ProfileSelector(Operation):
908 dataOut.flagNoData = False
908 dataOut.flagNoData = False
909 dataOut.profileIndex = self.profileIndex
909 dataOut.profileIndex = self.profileIndex
910
910
911 self.incIndex()
911 self.incProfileIndex()
912
912
913 return True
913 return True
914
914
General Comments 0
You need to be logged in to leave comments. Login now