Displaying differences for changeset
 
display as  

src/java/cfa/guiDC_Model.java

@@ -409,7 +409,7 @@
         XYPlot plot = new XYPlot();
         boolean showLegend = false;
         //Create X Axis
-        ValueAxis xAxis = new NumberAxis("Flow Duration Interval [%]");
+        ValueAxis xAxis = new NumberAxis("Percent of Time Flow is Exceeded [%]");
         xAxis.setRange(0,100);
         plot.setDomainAxis(0, xAxis);
         
@@ -1013,7 +1013,7 @@
         int seriesIndex = 0;
         
         //Create X Axis
-        ValueAxis xAxis = new NumberAxis("Duration Curve Interval [%]");
+        ValueAxis xAxis = new NumberAxis("Percent of Time Load is Exceeded [%]");
         xAxis.setRange(0,100);
         plot.setDomainAxis(0, xAxis);
 
@@ -1376,7 +1376,7 @@
         PrintWriter printLine = new PrintWriter(writer);
 
         //Add Headers to text file
-        printLine.printf("%s" + "\r\n", "Flow Duration Interval (Excedence Probability based on Weibull Plotting Position Ranking)\t" + resultType);
+        printLine.printf("%s" + "\r\n", "Percent of Time Flow is Exceeded [%] (Excedence Probability based on Weibull Plotting Position Ranking)\t" + resultType);
 
         //Output data to text file
         for(int i=0; i < finalResults.size(); i++) {

src/java/cfa/guiRegionalFDC_Model.java

@@ -228,7 +228,7 @@
         PrintWriter printLine = new PrintWriter(writer);
 
         //Add Headers to text file
-        printLine.printf("%s" + "\r\n", "Flow Duration Interval (Excedence Probability based on Weibull Plotting Position Ranking)\tRegional FDC [" + units + "]");
+        printLine.printf("%s" + "\r\n", "Percent of Time Flow is Exceeded [%] (Excedence Probability based on Weibull Plotting Position Ranking)\tRegional FDC [" + units + "]");
 
         //Output data to text file
         for(int i=0; i < finalResults.size(); i++) {
@@ -264,7 +264,7 @@
         //Graph the complete flow duration curve for the time period
         XYPlot plot = new XYPlot();
         //Create X Axis
-        ValueAxis xAxis = new NumberAxis("Flow Duration Interval [%]");
+        ValueAxis xAxis = new NumberAxis("Percent of Time Flow is Exceeded [%]");
         xAxis.setRange(0,100);
         plot.setDomainAxis(0, xAxis);
         //Set log-scale y axis

src/java/m/cfa/RegionalFlowDurationCurve_V1_0Req.json

@@ -28,7 +28,7 @@
     },
     {
       "name": "flow_duration_curves",
-      "description": "A list/matrix of flow duration curves for each station. Each station should have a column of flow duration intervals (0-100) followed by a column of the flows (cfs) corresponding to those non-exeedances. Each column is separated by tabs ('\t') and each row should be separated by '\n'. The first row should be a header for the data. Any blank data (i.e. station 1 has more data points than station 2) should have both the fdc and flow column filled with '-1'.",
+      "description": "A list/matrix of flow duration curves for each station. Each station should have a column of flow exceedances (percent of time flow is exceeded, 0-100) followed by a column of the flows (cfs) corresponding to those non-exeedances. Each column is separated by tabs ('\t') and each row should be separated by '\n'. The first row should be a header for the data. Any blank data (i.e. station 1 has more data points than station 2) should have both the fdc and flow column filled with '-1'.",
       "unit": "none",
       "value": "06725450_fdc\t06725450_flow\t06741510_fdc\t06741510_flow\tCLAFTCCO_fdc\tCLAFTCCO_flow\n0.007787555\t2580\t0.007825338\t7200\t0.059101655\t5610\n1.004594658\t947\t1.001643321\t1060\t1.004728132\t3870\n2.00140176\t655\t2.011111981\t515\t2.06855792\t3040\n5.015185733\t329\t5.000391267\t193\t5.023640662\t2310\n10.15497235\t190\t10.03990923\t119\t10.04728132\t1250\n25.13044155\t111\t25.18193912\t65\t25\t405\n50.69698622\t64\t50.20737147\t20\t50.11820331\t116\n76.25574332\t44\t75.36583457\t5.9\t75\t33.8\n91.59722763\t35\t90.70349793\t3.4\t79.43262411\t2.45\n95.88038315\t32\t95.64128649\t2.8\t100\t0\n99.26018223\t27\t98.28625088\t2.3\t-1\t-1\n100\t0\t99.06878472\t1.9\t-1\t-1\n-1\t-1\t100\t0\t-1\t-1"
     }