2017-02-03 14 views
3

この問題を解決する方法がわかりません。私は2つの地理列SQL Server空間の残りの距離を見つける

CREATE TABLE #Trip 
... 
LegRoute geography NULL, 
GPSPoint geography NULL, 
GPSPointToLegRouteDistance Float NULL, 
... 
  • LegRouteがポリライン
  • GPSPointは私がラインにポイントから(マイル)の距離を取得することができますポイント

が含まれて含まれています。これは経路に関連するGPS位置です。

UPDATE T 
SET GPSPointToLegRouteDistance = LegRoute.STDistance(GPSPoint)/1609.344    
FROM #Trip T 

私が見つけ出す必要があるのは、この距離が計算されたPOINTです。次に、その点からポリラインのENDまでの距離を計算する方法が必要です。

現実世界の説明:

車両が逸失している可能性があります(常に表示されます)。しかし、私はルート上で最も近いポイントと、この旅行距離がどれだけ残っているかを見つける必要があります。

答えて

0

私はこれを解決しました。コメントしてより良い/より速い方法をお勧めします。いくつかの調査の後、組み込みのSQL Server機能を使用してそれを行う方法はないようです。そこで、私はCLRインテグレーションを使用しました。

数学の観点からは、「仮定」と解は完全に正確ではありません。しかし、私の目標はスピードだった。だから、私がやったことをやった。また、私たちのDBには、Lat/Lonと文字列(複数のWebサービスが返すものに似た文字列、一連の点だけ)としてGPSとルートを格納します。

ちょうど私たちが持っているデータを見るだけで、 "1/2-1マイル以上。そして私は誤差が最大0.2マイルにあると推定しています。私たちが何をしているのか(道路のトラック上の残りの走行距離/時間を見積もる)は何もありません。私たちの試みを地理的なタイプと比較して、パフォーマンスは非常にまともです。しかし、C#のコードスピードを改善するための提案がある場合は、どうかしてください。

public class Functions 
{ 
    /// <summary> 
    /// Function receives path and current location. We find remaining distance after 
    /// matching position. Function will return null in case of error. 
    /// If everything goes well but last point on route is closest to GPS - we return 0 
    /// </summary> 
    /// <param name="lat"> 
    /// Latitude of current location 
    /// </param> 
    /// <param name="lon"> 
    /// Longitude of current location 
    /// </param> 
    /// <param name="path"> 
    /// Path as a series of points just like we have it in RouteCache 
    /// </param> 
    /// <param name="outOfRouteMetersThreshhold"> 
    /// Out of route distance we can tolerate. If reached - return NULL 
    /// </param> 
    /// <returns> 
    /// Meters to end of path. 
    /// </returns> 
    [SqlFunction] 
    public static double? RemainingDistance(double lat, double lon, string path, double outOfRouteThreshhold) 
    { 
     var gpsPoint = new Point { Lat = lat, Lon = lon }; 

     // Parse path into array of points 
     // Loop and find point in sequence closest to our input GPS lat/lon 
     // IMPORTANT!!! There is some simplification of issue here. 
     // We assume that linestring is pretty granular with small-ish segments 
     // This way we don't care if distance is to segment. We just check distance to each point. 
     // This will give better performance but will not be too precise. For what we do - it's OK 
     var closestPointIndex = 0; 
     double distance = 10000; 
     var pointArrayStr = path.Split(','); 
     if (pointArrayStr.Length < 2) return null; 

     for (var i = 0; i < pointArrayStr.Length; i++) 
     { 
      var latLonStr = pointArrayStr[i].Split(' '); 
      var currentDistance = DistanceSqrt(
       gpsPoint, 
       new Point { Lat = double.Parse(latLonStr[1]), Lon = double.Parse(latLonStr[0]) }); 
      if (currentDistance >= distance) continue; 

      distance = currentDistance; 
      closestPointIndex = i; 
     } 

     // Closest point known. Let's see what this distance in meters and handle out of route 
     var closestPointStr = pointArrayStr[closestPointIndex].Split(' '); 
     var closestPoint = new Point { Lat = double.Parse(closestPointStr[1]), Lon = double.Parse(closestPointStr[0]) }; 
     var distanceInMeters = DistanceMeters(gpsPoint, closestPoint); 
     if (distanceInMeters > outOfRouteThreshhold) return null; 

     // Last point closest, this is "complete" route or something wrong with passed data 
     if (closestPointIndex == pointArrayStr.Length - 1) return 0; 

     // Reconstruct path string, but only for remaining points in line 
     var strBuilder = new StringBuilder(); 
     for (var i = closestPointIndex; i < pointArrayStr.Length; i++) strBuilder.Append(pointArrayStr[i] + ","); 
     strBuilder.Remove(strBuilder.Length - 1, 1); 

     // Create geography linestring and calculate lenght. This will be our remaining driving distance 
     try 
     { 
      var geoPath = SqlGeography.STGeomFromText(new SqlChars($"LINESTRING({strBuilder})"), 4326); 
      var dist = geoPath.STLength().Value; 
      return dist; 
     } 
     catch (Exception) 
     { 
      return -1; 
     } 
    } 

    // Compute the distance from A to B 
    private static double DistanceSqrt(Point pointA, Point pointB) 
    { 
     var d1 = pointA.Lat - pointB.Lat; 
     var d2 = pointA.Lon - pointB.Lon; 

     return Math.Sqrt(d1 * d1 + d2 * d2); 
    } 

    private static double DistanceMeters(Point pointA, Point pointB) 
    { 
     var e = Math.PI * pointA.Lat/180; 
     var f = Math.PI * pointA.Lon/180; 
     var g = Math.PI * pointB.Lat/180; 
     var h = Math.PI * pointB.Lon/180; 

     var i = Math.Cos(e) * Math.Cos(g) * Math.Cos(f) * Math.Cos(h) 
      + Math.Cos(e) * Math.Sin(f) * Math.Cos(g) * Math.Sin(h) 
      + Math.Sin(e) * Math.Sin(g); 

     var j = Math.Acos(i); 
     var k = 6371 * j; // 6371 earth radius 

     return k * 1000; 
    } 

    private struct Point 
    { 
     public double Lat { get; set; } 

     public double Lon { get; set; } 
    } 
} 
関連する問題