##// END OF EJS Templates
Minor changes
Miguel Valdez -
r754:c1673fc8e139
parent child
Show More
@@ -574,9 +574,9 class JRODataReader(JRODataIO):
574 574 return None, None
575 575
576 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 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 581 filenameList = []
582 582 datetimeList = []
@@ -771,7 +771,7 class ProfileSelector(Operation):
771 771 Operation.__init__(self)
772 772 self.profileIndex = 0
773 773
774 def incIndex(self):
774 def incProfileIndex(self):
775 775
776 776 self.profileIndex += 1
777 777
@@ -856,7 +856,7 class ProfileSelector(Operation):
856 856 dataOut.profileIndex = self.profileIndex
857 857 dataOut.flagNoData = False
858 858
859 self.incIndex()
859 self.incProfileIndex()
860 860 return True
861 861
862 862 if profileRangeList != None:
@@ -871,7 +871,7 class ProfileSelector(Operation):
871 871 dataOut.profileIndex = self.profileIndex
872 872 dataOut.flagNoData = False
873 873
874 self.incIndex()
874 self.incProfileIndex()
875 875 return True
876 876
877 877 if rangeList != None:
@@ -896,7 +896,7 class ProfileSelector(Operation):
896 896 dataOut.profileIndex = self.profileIndex
897 897 dataOut.flagNoData = False
898 898
899 self.incIndex()
899 self.incProfileIndex()
900 900
901 901 break
902 902
@@ -908,7 +908,7 class ProfileSelector(Operation):
908 908 dataOut.flagNoData = False
909 909 dataOut.profileIndex = self.profileIndex
910 910
911 self.incIndex()
911 self.incProfileIndex()
912 912
913 913 return True
914 914
General Comments 0
You need to be logged in to leave comments. Login now