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));
        }
示例#2
0
 public SpeedAggregationBySignal(ApproachSpeedAggregationOptions options, Models.Signal signal) : base(
         options, signal)
 {
     ApproachSpeedEvents = new List <SpeedAggregationByApproach>();
     GetApproachSpeedEventsAggregationContainersForAllApporaches(options, signal);
     LoadBins(null, null);
 }
示例#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;
            }
        }
示例#4
0
 private void GetApproachSpeedEventsAggregationContainersForAllApporaches(
     ApproachSpeedAggregationOptions options, Models.Signal signal)
 {
     foreach (var approach in signal.Approaches)
     {
         ApproachSpeedEvents.Add(
             new SpeedAggregationByApproach(approach, options, options.StartDate,
                                            options.EndDate,
                                            true, options.SelectedAggregatedDataType));
         if (approach.PermissivePhaseNumber != null)
         {
             ApproachSpeedEvents.Add(
                 new SpeedAggregationByApproach(approach, options, options.StartDate,
                                                options.EndDate,
                                                false, options.SelectedAggregatedDataType));
         }
     }
 }
示例#5
0
 public SpeedAggregationBySignal(ApproachSpeedAggregationOptions options, Models.Signal signal,
                                 DirectionType direction) : base(options, signal)
 {
     ApproachSpeedEvents = new List <SpeedAggregationByApproach>();
     foreach (var approach in signal.Approaches)
     {
         if (approach.DirectionType.DirectionTypeID == direction.DirectionTypeID)
         {
             ApproachSpeedEvents.Add(
                 new SpeedAggregationByApproach(approach, options, options.StartDate,
                                                options.EndDate,
                                                true, options.SelectedAggregatedDataType));
             if (approach.PermissivePhaseNumber != null)
             {
                 ApproachSpeedEvents.Add(
                     new SpeedAggregationByApproach(approach, options, options.StartDate,
                                                    options.EndDate,
                                                    false, options.SelectedAggregatedDataType));
             }
         }
     }
     LoadBins(null, null);
 }
        private ActionResult GetApproachSpeedAggregationChart(AggDataExportViewModel aggDataExportViewModel)
        {
            ApproachSpeedAggregationOptions options = new ApproachSpeedAggregationOptions();

            return(GetChart(aggDataExportViewModel, options));
        }
示例#7
0
 public SpeedAggregationByApproach(Approach approach, ApproachSpeedAggregationOptions options, DateTime startDate,
                                   DateTime endDate, bool getProtectedPhase, AggregatedDataType dataType) : base(approach, options, startDate, endDate,
                                                                                                                 getProtectedPhase, dataType)
 {
 }
示例#8
0
        public void CreateTimeMetricStartToFinishAllBinSizesAllAggregateDataTypesTest()
        {
            ApproachSpeedAggregationOptions options = new ApproachSpeedAggregationOptions();

            base.CreateTimeMetricStartToFinishAllBinSizesAllAggregateDataTypesTest(options);
        }