将Lat / Lon转换为MGRS

时间:2010-07-30 18:58:54

标签: c# math gis coordinates coordinate-systems

有谁知道在哪里可以找到将Lat / Lon位置转换为Military Grid Reference System (MGRS)的代码库?如果可能的话,我正在寻找C#实现。

4 个答案:

答案 0 :(得分:4)

我们最终使用GeoTrans并从代码中创建DLL并使用PInvoke调用函数。 我们从源头中提取了以下内容,任何人都想知道(最小解决方案):

  • polarst
  • tranmerc
  • UPS
  • UTM
  • MGRS

我们使用的PInvoke签名:

[DllImport("mgrs.dll")]
public static extern int Convert_Geodetic_To_MGRS(
   double Latitude,
   double Longitude,
   int Precision, // 1 to 5, we used 4 (10 square meters)
   StringBuilder MGRS);

对应于mgrs.h中的此函数:

MGRSDLL_API long __stdcall Convert_Geodetic_To_MGRS(
   double Latitude,
   double Longitude,
   long Precision,
   char* MGRS);

答案 1 :(得分:2)

您可以使用GDAL的C#包装器将lat / lon转换为UTM。然后,您只需要为MGRS正确格式化值,因为它只是具有不同数字格式的UTM。

答案 2 :(得分:1)

CoordinateSharp可作为Nuget包使用,可以做到这一点。

Coordinate c = new Coordinate(40.57682, -70.75678);
c.MGRS.ToString(); // Outputs 19T CE 51307 93264

答案 3 :(得分:0)

如果有帮助,就在js上找到......

https://github.com/codice/usng.js

用法 -

var converter = new usngs.Converter();
alert(converter.LLtoMGRS(33.754032, -98.451233, 9));