Ejemplo n.º 1
0
 /// <summary>
 /// Adjusts region coordinate prefixes to be aligned with precision<see cref="Region"/>/>
 /// </summary>
 /// <param name="region">Input <see cref="Region"/></param>
 /// <returns><see cref="Region"/> - region with adjusted coordinate prefixes</returns>
 public static Region AdjustToPrecision(Region region)
 {
     return(new Region(
                PrecisionHelper.Round(region.LatitudePrefix, region.Precision),
                PrecisionHelper.Round(region.LongitudePrefix, region.Precision),
                region.Precision
                ));
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Enumerates all <see cref="Region"/>s of given precision covering given area/>
        /// Current implementation only returns single region associated with area center.
        /// Under assumption of radius of area to be significantly below precision resolution and usage of extension >= 1 in search,
        /// that is enough
        /// </summary>
        /// <param name="area"><see cref="Area"/></param>
        /// <param name="precision">Precision. Any integer number</param>
        /// <returns>Collection of <see cref="Region"/>s</returns>

        public static IEnumerable <Region> GetRegionsCoverage(Area area, int precision)
        {
            yield return(new Region
            {
                LatitudePrefix = PrecisionHelper.Round(area.Location.Latitude, precision),
                LongitudePrefix = PrecisionHelper.Round(area.Location.Longitude, precision),
                Precision = precision
            });
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Adjusts region coordinate prefixes to be aligned with precision<see cref="Region"/>/>
 /// </summary>
 /// <param name="region">Input <see cref="Region"/></param>
 /// <returns><see cref="Region"/> - region with adjusted coordinate prefixes</returns>
 public static Region AdjustToPrecision(Region region)
 {
     return new Region
     {
         LatitudePrefix = PrecisionHelper.Round(region.LatitudePrefix, region.Precision),
         LongitudePrefix = PrecisionHelper.Round(region.LongitudePrefix, region.Precision),
         Precision = region.Precision
     };
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Creates a new <see cref="Region"/>
 /// </summary>
 /// <param name="lat">Precise latitude</param>
 /// <param name="lng">Precise longitude</param>
 /// <param name="precision">Precision parameter</param>
 /// <remarks>
 /// This constructor allows backward-compatibility with previous
 /// API versions which defined lat/lng as <see cref="double"/>.
 /// </remarks>
 public static Region CreateRegion(double lat, double lng, int precision = Region.MAX_PRECISION)
 {
     return(new Region
     {
         LatitudePrefix = PrecisionHelper.Round(lat, Region.MAX_PRECISION),
         LongitudePrefix = PrecisionHelper.Round(lng, Region.MAX_PRECISION),
         Precision = precision
     });
 }
Ejemplo n.º 5
0
        ///<summary>
        ///For given region, target precision and extension size,
        ///returns region boundary that gives available ranges of latitude/longitude 
        ///for regions of target precision, overlapping with extension of given region
        /// </summary>
        /// <param name="region">Source <see cref="Region"/></param>
        /// <param name="extension">Size of region extension (in precision-aligned steps)</param>
        /// <param name="precision"> Target precision parameter. Any integer value.</param>
        /// <returns>Region boundary rb. Every region with Lat/Lon of corresponding RegionBoundary's min
        /// belonging to rb overlaps with extension of given region <see cref="Region"/> objects</returns>
        public static RegionBoundary GetConnectedRegionsRange(Region region, int extension, int precision)
        {
            RegionBoundary rb = RegionHelper.GetRegionBoundary(region);

            double step = PrecisionHelper.GetStep(precision);
            rb.Min.Latitude -= extension * step;
            rb.Min.Longitude -= extension * step;

            rb.Max.Latitude += (extension - 1) * step;
            rb.Max.Latitude += (extension - 1) * step;

            return rb;
        }
Ejemplo n.º 6
0
        /// <summary>
        /// Creates a new <see cref="RegionBoundary"/> from a provided <see cref="Region"/>
        /// </summary>
        /// <param name="region">Source <see cref="Region"/></param>
        public static RegionBoundary GetRegionBoundary(Region region)
        {
            if (region == null)
            {
                throw new ArgumentNullException(nameof(region));
            }

            Tuple<double, double> latRange = PrecisionHelper.GetRange(region.LatitudePrefix, region.Precision);
            Tuple<double, double> lonRange = PrecisionHelper.GetRange(region.LongitudePrefix, region.Precision);

            return new RegionBoundary
            {
                Min = new Coordinates { Latitude = latRange.Item1, Longitude = lonRange.Item1 },
                Max = new Coordinates { Latitude = latRange.Item2, Longitude = lonRange.Item2 }
            };
        }
Ejemplo n.º 7
0
 /// <summary>
 /// Enumerates all regions of given precisions range connected with given <see cref="Region"/>/>
 /// Being connected means either intersects with the region extended by overlap amount of precision-aligned grids
 /// </summary>
 /// <param name="region">Source <see cref="Region"/></param>
 /// <param name="extension">Size of region extension (in precision-aligned steps)</param>
 /// <param name="precisionStart"> Start precision parameter. Any integer value.</param>
 /// <param name="precisionCount"> Count of precision parameters to include. Any non-negative integer value.</param>
 /// <returns>Collection of connected <see cref="Region"/> objects</returns>
 public static IEnumerable<Region> GetConnectedRegions(Region region, int extension, int precisionStart, int precisionCount = 1)
 {
     RegionBoundary rb = GetRegionBoundary(region);
     for (int precision = precisionStart; precision < precisionStart + precisionCount; ++precision)
     {
         double step = PrecisionHelper.GetStep(precision);
         for (double lat = rb.Min.Latitude - extension * step; lat < rb.Max.Latitude + extension * step; lat += step)
         {
             for (double lon = rb.Min.Longitude - extension * step; lon < rb.Max.Longitude + extension * step; lon += step)
             {
                 yield return new Region
                 {
                     LatitudePrefix = lat,
                     LongitudePrefix = lon,
                     Precision = precision
                 };
             }
         }
     }
 }
Ejemplo n.º 8
0
        /// <summary>
        /// Creates a new <see cref="RegionBoundary"/> from a provided <see cref="Region"/>
        /// </summary>
        /// <param name="region">Source <see cref="Region"/></param>
        public static RegionBoundary GetRegionBoundary(Region region)
        {
            if (region == null)
            {
                throw new ArgumentNullException(nameof(region));
            }

            Tuple <int, int> latRange = PrecisionHelper.GetRange(region.LatitudePrefix, region.Precision);
            Tuple <int, int> lonRange = PrecisionHelper.GetRange(region.LongitudePrefix, region.Precision);

            return(new RegionBoundary
            {
                Min = new Coordinates {
                    Latitude = Math.Max(latRange.Item1, Coordinates.MIN_LATITUDE), Longitude = Math.Max(lonRange.Item1, Coordinates.MIN_LONGITUDE)
                },
                Max = new Coordinates {
                    Latitude = Math.Min(latRange.Item2, Coordinates.MAX_LATITUDE), Longitude = Math.Min(lonRange.Item2, Coordinates.MAX_LONGITUDE)
                }
            });
        }
Ejemplo n.º 9
0
        private static IEnumerable <Region> GetRegionCoveragePositive(Coordinates location, float radiusMeters, int precision)
        {
            int latMax = (int)Coordinates.MAX_LATITUDE;
            int lonMax = (int)Coordinates.MAX_LONGITUDE;

            int step = PrecisionHelper.GetStep(precision);

            int latCurrent = PrecisionHelper.Round(location.Latitude, precision);
            int latNext    = Math.Min(latCurrent + step, latMax);

            int lonCurrent = PrecisionHelper.Round(location.Longitude, precision);
            int lonNext    = Math.Min(lonCurrent + step, lonMax);

            //region itself
            yield return(new Region(latCurrent, lonCurrent, precision));

            if (precision > 0)
            {
                if (latCurrent > 0)
                {
                    // South-West
                    if (lonCurrent > 0 && GeoHelper.DistanceMeters(location, new Coordinates {
                        Latitude = (float)latCurrent, Longitude = (float)lonCurrent
                    }) < radiusMeters)
                    {
                        yield return(new Region(latCurrent - step, lonCurrent - step, precision));
                    }
                    // South
                    if (GeoHelper.DistanceMeters(location, new Coordinates {
                        Latitude = (float)latCurrent, Longitude = location.Longitude
                    }) < radiusMeters)
                    {
                        yield return(new Region(latCurrent - step, lonCurrent, precision));
                    }
                    // South-East
                    if (GeoHelper.DistanceMeters(location, new Coordinates {
                        Latitude = (float)latCurrent, Longitude = (float)lonNext
                    }) < radiusMeters)
                    {
                        yield return(new Region(latCurrent - step, lonNext == lonMax ? -lonCurrent : lonNext, precision));
                    }
                }
                if (lonCurrent > 0)
                {
                    // West
                    if (GeoHelper.DistanceMeters(location, new Coordinates {
                        Latitude = location.Latitude, Longitude = (float)lonCurrent
                    }) < radiusMeters)
                    {
                        yield return(new Region(latCurrent, lonCurrent - step, precision));
                    }
                    //North-West
                    if (latNext < latMax && GeoHelper.DistanceMeters(location, new Coordinates {
                        Latitude = (float)latNext, Longitude = (float)lonCurrent
                    }) < radiusMeters)
                    {
                        yield return(new Region(latNext, lonCurrent - step, precision));
                    }
                }
                if (latNext < latMax)
                {
                    //North
                    if (GeoHelper.DistanceMeters(location, new Coordinates {
                        Latitude = (float)latNext, Longitude = location.Longitude
                    }) < radiusMeters)
                    {
                        yield return(new Region(latNext, lonCurrent, precision));
                    }
                    //North-East
                    if (GeoHelper.DistanceMeters(location, new Coordinates {
                        Latitude = (float)latNext, Longitude = (float)lonNext
                    }) < radiusMeters)
                    {
                        yield return(new Region(latNext, lonNext == lonMax ? -lonCurrent : lonNext, precision));
                    }
                }
                //East
                if (GeoHelper.DistanceMeters(location, new Coordinates {
                    Latitude = location.Latitude, Longitude = (float)lonNext
                }) < radiusMeters)
                {
                    if (lonNext < lonMax)
                    {
                        yield return(new Region(latCurrent, lonNext, precision));
                    }
                    else if (lonCurrent > 0)
                    {
                        yield return(new Region(latCurrent, -lonCurrent, precision));
                    }
                }
            }
        }