我需要使用Bing Map服務,EF 5和SQL Server 2008對地理編碼進行大量地址編碼。我在SQL中使用地理數據類型,該地理數據類型由EF轉換爲DbGeography類型。DbGeography上的coordinatesSystemId
當我創建一個DbGeography對象,這樣
string point = string.Format("POINT({0} {1})",address.Longitude,address.Latitude);
address.Location = System.Data.Spatial.DbGeography.PointFromText(point, 4326);
第二個參數要求一個 「coordinateSystemId」。這究竟是什麼?我看到很多示例使用4326. 我對空間數據很陌生,但我猜測有一組定義良好的座標系?我似乎無法找到一個定義。