Example #1
0
 public EventCountAggregationBySignal(ApproachEventCountAggregationOptions options, Models.Signal signal) : base(
         options, signal)
 {
     ApproachEventCounts = new List <EventCountAggregationByApproach>();
     GetApproachEventCountAggregationContainersForAllApproaches(options, signal);
     LoadBins(null, null);
 }
        public ActionResult GetAggregateDataTypes(int id)
        {
            List <AggregatedDataType> AggregatedDataTypes;

            switch (id)
            {
            case 16:
                AggregatedDataTypes = new DetectorVolumeAggregationOptions().AggregatedDataTypes;
                break;

            case 25:
                AggregatedDataTypes = new ApproachSpeedAggregationOptions().AggregatedDataTypes;
                break;

            case 18:
                AggregatedDataTypes = new ApproachPcdAggregationOptions().AggregatedDataTypes;
                break;

            case 19:
                AggregatedDataTypes = new ApproachCycleAggregationOptions().AggregatedDataTypes;
                break;

            case 20:
                AggregatedDataTypes = new ApproachSplitFailAggregationOptions().AggregatedDataTypes;
                break;

            case 26:
                AggregatedDataTypes = new ApproachYellowRedActivationsAggregationOptions().AggregatedDataTypes;
                break;

            case 22:
                AggregatedDataTypes = new SignalPreemptionAggregationOptions().AggregatedDataTypes;
                break;

            case 24:
                AggregatedDataTypes = new SignalPriorityAggregationOptions().AggregatedDataTypes;
                break;

            case 27:
                AggregatedDataTypes = new SignalEventCountAggregationOptions().AggregatedDataTypes;
                break;

            case 28:
                AggregatedDataTypes = new ApproachEventCountAggregationOptions().AggregatedDataTypes;
                break;

            case 29:
                AggregatedDataTypes = new PhaseTerminationAggregationOptions().AggregatedDataTypes;
                break;

            case 30:
                AggregatedDataTypes = new PhasePedAggregationOptions().AggregatedDataTypes;
                break;

            default:
                throw new Exception("Invalid Metric Type");
                break;
            }
            return(PartialView(AggregatedDataTypes));
        }
Example #3
0
        public void SetAggregateData()
        {
            switch (SelectedMetricTypeId)
            {
            case 16:
                AggregatedDataTypes = new DetectorVolumeAggregationOptions().AggregatedDataTypes;
                break;

            case 18:
                AggregatedDataTypes = new ApproachPcdAggregationOptions().AggregatedDataTypes;
                break;

            case 19:
                AggregatedDataTypes = new ApproachCycleAggregationOptions().AggregatedDataTypes;
                break;

            case 20:
                AggregatedDataTypes = new ApproachSplitFailAggregationOptions().AggregatedDataTypes;
                break;

            case 22:
                AggregatedDataTypes = new SignalPreemptionAggregationOptions().AggregatedDataTypes;
                break;

            case 24:
                AggregatedDataTypes = new SignalPriorityAggregationOptions().AggregatedDataTypes;
                break;

            case 25:
                AggregatedDataTypes = new ApproachSpeedAggregationOptions().AggregatedDataTypes;
                break;

            case 26:
                AggregatedDataTypes = new ApproachYellowRedActivationsAggregationOptions().AggregatedDataTypes;
                break;

            case 27:
                AggregatedDataTypes = new SignalEventCountAggregationOptions().AggregatedDataTypes;
                break;

            case 28:
                AggregatedDataTypes = new ApproachEventCountAggregationOptions().AggregatedDataTypes;
                break;

            default:
                throw new Exception("Invalid Metric Type");
                break;
            }
        }
Example #4
0
 private void GetApproachEventCountAggregationContainersForAllApproaches(
     ApproachEventCountAggregationOptions options, Models.Signal signal)
 {
     foreach (var approach in signal.Approaches)
     {
         ApproachEventCounts.Add(
             new EventCountAggregationByApproach(approach, options, options.StartDate,
                                                 options.EndDate,
                                                 true, options.SelectedAggregatedDataType));
         if (approach.PermissivePhaseNumber != null)
         {
             ApproachEventCounts.Add(
                 new EventCountAggregationByApproach(approach, options, options.StartDate,
                                                     options.EndDate,
                                                     false, options.SelectedAggregatedDataType));
         }
     }
 }
Example #5
0
 public EventCountAggregationBySignal(ApproachEventCountAggregationOptions options, Models.Signal signal,
                                      DirectionType direction) : base(options, signal)
 {
     ApproachEventCounts = new List <EventCountAggregationByApproach>();
     foreach (var approach in signal.Approaches)
     {
         if (approach.DirectionType.DirectionTypeID == direction.DirectionTypeID)
         {
             ApproachEventCounts.Add(
                 new EventCountAggregationByApproach(approach, options, options.StartDate,
                                                     options.EndDate,
                                                     true, options.SelectedAggregatedDataType));
             if (approach.PermissivePhaseNumber != null)
             {
                 ApproachEventCounts.Add(
                     new EventCountAggregationByApproach(approach, options, options.StartDate,
                                                         options.EndDate,
                                                         false, options.SelectedAggregatedDataType));
             }
         }
     }
     LoadBins(null, null);
 }
        private ActionResult GetApproachEventCountChart(AggDataExportViewModel aggDataExportViewModel)
        {
            ApproachEventCountAggregationOptions options = new ApproachEventCountAggregationOptions();

            return(GetChart(aggDataExportViewModel, options));
        }
 public EventCountAggregationByApproach(Approach approach, ApproachEventCountAggregationOptions options, DateTime startDate,
                                        DateTime endDate,
                                        bool getProtectedPhase, AggregatedDataType dataType) : base(approach, options, startDate, endDate,
                                                                                                    getProtectedPhase, dataType)
 {
 }