Esempio n. 1
0
        /// <summary>
        /// Calculates all routes between many sources/targets.
        /// </summary>
        /// <param name="vehicle">The vehicle profile.</param>
        /// <param name="sources"></param>
        /// <param name="targets"></param>
        /// <param name="max">The maximum weight to stop the calculation.</param>
        /// <param name="geometryOnly">Flag to return .</param>
        /// <returns></returns>
        public Route[][] CalculateManyToMany(Vehicle vehicle, RouterPoint[] sources, RouterPoint[] targets, float max = float.MaxValue, bool geometryOnly = false)
        {
            if (vehicle == null)
            {
                throw new ArgumentNullException("vehicle");
            }
            if (sources == null)
            {
                throw new ArgumentNullException("sources");
            }
            if (targets == null)
            {
                throw new ArgumentNullException("targets");
            }

            foreach (var source in sources)
            {
                foreach (var target in targets)
                {
                    if (source.Vehicle.UniqueName != target.Vehicle.UniqueName)
                    { // vehicles are different.
                        throw new ArgumentException(string.Format("Not all vehicle profiles match, {0} and {1} are given, expecting identical profiles.",
                                                                  source.Vehicle.UniqueName, target.Vehicle.UniqueName));
                    }
                    if (vehicle.UniqueName != target.Vehicle.UniqueName)
                    { // vehicles are different.
                        throw new ArgumentException(string.Format("Given vehicle profile does not match resolved points, {0} and {1} are given, expecting identical profiles.",
                                                                  vehicle.UniqueName, target.Vehicle.UniqueName));
                    }
                }
            }

            return(_router.CalculateManyToMany(vehicle, sources, targets, max, geometryOnly));
        }
Esempio n. 2
0
 /// <summary>
 /// Calculates all routes between many sources/targets.
 /// </summary>
 /// <param name="vehicle">The vehicle profile.</param>
 /// <param name="sources"></param>
 /// <param name="targets"></param>
 /// <returns></returns>
 public Route[][] CalculateManyToMany(Vehicle vehicle, RouterPoint[] sources, RouterPoint[] targets)
 {
     return(_router.CalculateManyToMany(vehicle, sources, targets));
 }