|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- namespace TelpoPush.Fence.Worker.Models.Fence
- {
- public static class CirclePolygonAlgorithm
- {
-
-
-
-
-
-
-
- public static bool IsIntersect(GpsFencePoint circle, double degree, IList<GpsFencePoint> polygon)
- {
- double powRadius = Math.Pow(degree, 2);
-
-
- foreach (var pt in polygon)
- {
- if (Math.Pow(circle.Longitude - pt.Longitude, 2) + Math.Pow(circle.Latitude - pt.Latitude, 2) < powRadius) return true;
- }
-
-
- var lines = EnumeratePolygonLines(polygon);
- foreach (var seg in lines)
- {
- if (PointToLine(circle, seg.Item1, seg.Item2) < degree) return true;
- }
-
- return false;
- }
-
- private static IList<Tuple<GpsFencePoint, GpsFencePoint>> EnumeratePolygonLines(IList<GpsFencePoint> polygon)
- {
- var list = new List<Tuple<GpsFencePoint, GpsFencePoint>>();
-
- for (int i = 0; i < polygon.Count - 1; i++)
- {
- list.Add(new Tuple<GpsFencePoint, GpsFencePoint>(polygon[i], polygon[i + 1]));
- }
- list.Add(new Tuple<GpsFencePoint, GpsFencePoint>(polygon[polygon.Count - 1], polygon[0]));
-
- return list;
- }
-
-
- private static double LineSpace(GpsFencePoint ptStart, GpsFencePoint ptEnd)
- {
- if (ptStart == ptEnd) return 0;
- return Math.Sqrt((ptEnd.Longitude - ptStart.Longitude) * (ptEnd.Longitude - ptStart.Longitude) + (ptEnd.Latitude - ptStart.Latitude) * (ptEnd.Latitude - ptStart.Latitude));
- }
-
-
-
-
-
-
-
-
- private static double PointToLine(GpsFencePoint pt, GpsFencePoint ptStart, GpsFencePoint ptEnd)
- {
- double distance = 0;
- double a, b, c;
- a = LineSpace(ptStart, ptEnd);
- b = LineSpace(pt, ptStart);
- c = LineSpace(pt, ptEnd);
- if (b == 0 || c == 0)
- {
- distance = 0;
- return distance;
- }
- if (a == 0)
- {
- distance = b;
- return distance;
- }
- if (c * c >= a * a + b * b)
- {
- distance = b;
- return distance;
- }
- if (b * b >= a * a + c * c)
- {
- distance = c;
- return distance;
- }
-
- double p = (a + b + c) / 2;
- double s = Math.Sqrt(p * (p - a) * (p - b) * (p - c));
- distance = 2 * s / a;
-
- return distance;
- }
- }
- }
|